fix a variable used without being initialized case
This commit is contained in:
parent
7d8b272f8f
commit
1ee19207fb
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ void menu_frame_move(ObMenuFrame *self, gint x, gint y)
|
||||||
|
|
||||||
void menu_frame_move_on_screen(ObMenuFrame *self)
|
void menu_frame_move_on_screen(ObMenuFrame *self)
|
||||||
{
|
{
|
||||||
Rect *a;
|
Rect *a = NULL;
|
||||||
guint i;
|
guint i;
|
||||||
gint dx = 0, dy = 0;
|
gint dx = 0, dy = 0;
|
||||||
gint pos, half;
|
gint pos, half;
|
||||||
|
|
Loading…
Reference in a new issue