edje_util: make sure we have an initialized return value

This commit is contained in:
Stefan Schmidt 2016-06-20 16:06:29 +02:00
parent 5ba7065bbe
commit d5c7ce3805
1 changed files with 1 additions and 1 deletions

View File

@ -5763,7 +5763,7 @@ EOLIAN Eina_Bool
_edje_object_part_text_hide_visible_password(Eo *obj EINA_UNUSED, Edje *ed, const char *part)
{
Edje_Real_Part *rp;
Eina_Bool int_ret;
Eina_Bool int_ret = EINA_FALSE;
if ((!ed) || (!part)) return EINA_FALSE;
rp = _edje_real_part_recursive_get(&ed, part);