Fix 'var may be used uninitialized' warning.

SVN revision: 51342
This commit is contained in:
Christopher Michael 2010-08-18 20:31:35 +00:00
parent 20c922e047
commit 37a0e6a197
1 changed files with 2 additions and 2 deletions

View File

@ -201,8 +201,8 @@ _fill_list(E_Config_Dialog_Data *cfdata)
EINA_LIST_FOREACH(e_gadcon_provider_list(), l, gcc) EINA_LIST_FOREACH(e_gadcon_provider_list(), l, gcc)
{ {
Evas_Object *icon, *end; Evas_Object *icon = NULL, *end;
const char *lbl; const char *lbl = NULL;
if ((gcc->func.is_site) && (!gcc->func.is_site(cfdata->site))) if ((gcc->func.is_site) && (!gcc->func.is_site(cfdata->site)))
continue; continue;