ecore_evas extn module - fix coverity complaint

coverity is right. CID 1295139 fixed here. tmpstr_free on sometimes
uninitialized local var.
This commit is contained in:
Carsten Haitzler 2015-04-21 10:19:28 +09:00
parent ea77578ad6
commit 39bbfc3030
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ _extnbuf_new(const char *base, int id, Eina_Bool sys, int num,
char file[PATH_MAX];
mode_t mode = S_IRUSR | S_IWUSR;
int page_size;
Eina_Tmpstr *tmp;
Eina_Tmpstr *tmp = NULL;
page_size = eina_cpu_page_size();