elm_main : Do not release strings which eina_prefix returns

The getter functions of eina_prefix just returns internal string.
So they should not be released in application side.
This commit is contained in:
Ryuan Choi 2013-06-15 13:02:25 +09:00
parent c3e0b5fc7c
commit 5ae1e19911
1 changed files with 0 additions and 5 deletions

View File

@ -184,11 +184,6 @@ _prefix_shutdown(void)
if (app_compile_lib_dir) eina_stringshare_del(app_compile_lib_dir);
if (app_compile_data_dir) eina_stringshare_del(app_compile_data_dir);
if (app_compile_locale_dir) eina_stringshare_del(app_compile_locale_dir);
if (app_prefix_dir) eina_stringshare_del(app_prefix_dir);
if (app_bin_dir) eina_stringshare_del(app_bin_dir);
if (app_lib_dir) eina_stringshare_del(app_lib_dir);
if (app_data_dir) eina_stringshare_del(app_data_dir);
if (app_locale_dir) eina_stringshare_del(app_locale_dir);
app_mainfunc = NULL;
app_domain = NULL;
app_checkfile = NULL;