Fix calls to g_string_free() (added so as not to leak memory).

svn path=/trunk/; revision=40641
This commit is contained in:
Guy Harris 2012-01-21 23:45:15 +00:00
parent d19dba2c76
commit d494beebcf
1 changed files with 2 additions and 2 deletions

View File

@ -1506,8 +1506,8 @@ build_file_type_list(gboolean save, int *item_to_select) {
}
index++;
}
g_string_free(pattern_str);
g_string_free(description_str);
g_string_free(pattern_str, TRUE);
g_string_free(description_str, TRUE);
/* terminate the array */
sa = g_array_append_val(sa, zero);