eolian: free a buffer properly (fixes CID 1243233)

This commit is contained in:
Daniel Kolesa 2014-10-03 09:26:27 +01:00
parent 23143148f1
commit df0b8e3d2f
1 changed files with 1 additions and 0 deletions

View File

@ -200,5 +200,6 @@ eolian_class_c_get_function_name_get(const Eolian_Class *cl)
eina_str_tolower(&bufp);
ret = eina_stringshare_add(bufp);
free(bufp);
eina_strbuf_free(buf);
return ret;
}