theme: Fix crash at app shutdown

The wrong hash was used to store theme data items. Obviously
this is an API that wasn't used within EFL thus untested. Yay.

@fix
This commit is contained in:
Jean-Philippe Andre 2016-12-08 16:10:20 +09:00
parent f1d546df5d
commit 055e905b84
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ _elm_theme_find_data_try(Elm_Theme *th, const Eina_File *f, const char *key)
free(data);
if (t)
{
eina_hash_add(th->cache, key, t);
eina_hash_add(th->cache_data, key, t);
return t;
}
return NULL;