enventor - free strbuf memory at termination.

This commit is contained in:
ChunEon Park 2013-08-28 02:28:29 +09:00
parent a485774263
commit 77a9d74817
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ config_term(config_data *cd)
eina_stringshare_del(str);
eina_list_free(cd->edc_fnt_path_list);
if (cd->edc_img_path_buf) eina_strbuf_free(cd->edc_img_path_buf);
if (cd->edc_snd_path_buf) eina_strbuf_free(cd->edc_snd_path_buf);
if (cd->edc_fnt_path_buf) eina_strbuf_free(cd->edc_fnt_path_buf);
free(cd);
}