bugfix: Fix buffer overflow in desk_show.

Was the wrong structure type which caused writing after the allocated
size and was generally bad and wrong.

Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
This commit is contained in:
Carlos Rafael Giani 2014-06-01 14:45:49 +02:00 committed by Tom Hacohen
parent 31d652f87f
commit 9e6c276905
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ e_desk_show(E_Desk *desk)
E_Event_Desk_Show *ev;
E_Event_Desk_Before_Show *eev;
E_Event_Desk_After_Show *eeev;
Edje_Message_Float_Set *msg;
Edje_Message_Int_Set *msg;
Eina_List *l;
E_Shelf *es;
int was_zone = 0, x, y, dx = 0, dy = 0;