Fix memory leak

This commit is contained in:
Denis Kenzior 2009-07-02 18:19:15 -05:00
parent d717908c69
commit 807201e969
1 changed files with 1 additions and 0 deletions

View File

@ -2845,5 +2845,6 @@ char *cbs_decode_text(GSList *cbs_list, char *iso639_lang)
utf8 = g_convert(buf, bufsize, "UTF-8//TRANSLIT", "UCS-2BE",
NULL, NULL, NULL);
g_free(buf);
return utf8;
}