Fix erroneous free of returned string in prepare_run_script.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4176 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
8c0b288906
commit
0d0f910a07
@ -1,3 +1,9 @@
|
||||
2009-09-11 Lex Trotman <elextr(at)gmail(dot)com>
|
||||
|
||||
* src/build.c
|
||||
Fix erroneous free of returned string in prepare_run_script.
|
||||
|
||||
|
||||
2009-09-10 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
|
||||
|
||||
* data/filetypes.latex:
|
||||
|
||||
@ -738,7 +738,7 @@ static gchar *prepare_run_script(GeanyDocument *doc, gchar **vte_cmd_nonscript,
|
||||
if (vte_cmd_nonscript != NULL)
|
||||
*vte_cmd_nonscript = cmd_string;
|
||||
|
||||
utils_free_pointers(3, cmd_string, executable, locale_filename, NULL);
|
||||
utils_free_pointers(2, executable, locale_filename, NULL);
|
||||
return working_dir;
|
||||
}
|
||||
else
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user