edje - + NULL check

Signed-Off-By: ShilpaOnkar Singh(shilpa.singh@samsung.com)



SVN revision: 69637
This commit is contained in:
ChunEon Park 2012-03-26 12:44:33 +00:00
parent 67e350ba1d
commit d905ebda6a
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ edje_file_group_exists(const char *file, const char *glob)
Eina_Bool is_glob = EINA_FALSE;
const char *p;
if ((!file) || (!*file))
if ((!file) || (!*file) || (!glob))
return EINA_FALSE;
edf = _edje_cache_file_coll_open(file, NULL, &error_ret, NULL);