Kaydet (Commit) 89a37d01 authored tarafından Enrico Tröger's avatar Enrico Tröger

Fix a small memory leak.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3904 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 226d43b8
......@@ -4,6 +4,8 @@
Fix duplicate "context_action_cmd" key.
Use different icons for "Methods" and "Procedures" in the symbol
list for Tcl files.
* src/filetypes.c:
Fix a small memory leak.
2009-06-28 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
......@@ -1050,6 +1050,7 @@ static void filetype_free(gpointer data, G_GNUC_UNUSED gpointer user_data)
set_error_regex(ft, NULL);
g_strfreev(ft->pattern);
g_free(ft->priv);
g_free(ft);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment