Should check whether the pointers are non-NULL, not if their contents if non-zero.

SVN revision: 36807
This commit is contained in:
Chidambar Zinnoury 2008-10-19 10:56:00 +00:00
parent d052870ff0
commit 67ba54726e
1 changed files with 2 additions and 2 deletions

View File

@ -391,8 +391,8 @@ _mixer_popup_cb_resize(Evas_Object *obj, int *w, int *h)
e_widget_min_size_get(obj, &mw, &mh);
if (mh < 200) mh = 200;
if (mw < 60) mw = 60;
if (*w) *w = (mw + 8);
if (*h) *h = (mh + 8);
if (w) *w = (mw + 8);
if (h) *h = (mh + 8);
}
static Evas_Object *