elm_cnp.c: fixed uninitialized variable warning spotted by coverity.

CID 1039986, 1039987.
This commit is contained in:
Daniel Juyung Seo 2013-07-05 18:49:31 +09:00
parent 0853e304e6
commit a4d654896b
1 changed files with 1 additions and 1 deletions

View File

@ -1935,7 +1935,7 @@ _x11_elm_drag_start(Evas_Object *obj, Elm_Sel_Format format, const char *data,
Ecore_Evas *ee;
int x, y, x2 = 0, y2 = 0, x3, y3;
Evas_Object *icon = NULL;
int w, h;
int w = 0, h = 0;
Ecore_X_Atom actx;
_x11_elm_cnp_init();