diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-25 22:00:07 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-25 22:00:07 +0000 |
| commit | 1ee19207fbcf8c0918858d83d04b308ecd6988a7 (patch) | |
| tree | c6e2bbf44b8cd7b703741794952c0ccabed854f7 /openbox | |
| parent | 7d8b272f8f68663ac5a6e005c5528627919f60d0 (diff) | |
fix a variable used without being initialized case
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/menuframe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/menuframe.c b/openbox/menuframe.c index de84dbf0..95168d4e 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -184,7 +184,7 @@ void menu_frame_move(ObMenuFrame *self, gint x, gint y) void menu_frame_move_on_screen(ObMenuFrame *self) { - Rect *a; + Rect *a = NULL; guint i; gint dx = 0, dy = 0; gint pos, half; |
