elm_cnp.c: initialize local variable.

This fixes coverity CID 1039988 Uninitialized scalar variable (UNINIT).
This commit is contained in:
Daniel Juyung Seo 2013-08-11 17:04:21 +09:00
parent aa5077532d
commit 1707641142
1 changed files with 1 additions and 1 deletions

View File

@ -1317,7 +1317,7 @@ static Eina_Bool
_x11_dnd_position(void *data __UNUSED__, int etype __UNUSED__, void *ev)
{
Ecore_X_Event_Xdnd_Position *pos = ev;
Ecore_X_Rectangle rect;
Ecore_X_Rectangle rect = { 0, 0, 0, 0 };
Dropable *dropable, *dropable_old;
Elm_Xdnd_Action act;