Revision: 1247 http://svn.sourceforge.net/geany/?rev=1247&view=rev Author: ntrel Date: 2007-02-03 09:49:03 -0800 (Sat, 03 Feb 2007)
Log Message: ----------- Add missing NULL terminator (oops).
Modified Paths: -------------- trunk/src/build.c
Modified: trunk/src/build.c =================================================================== --- trunk/src/build.c 2007-02-03 17:38:49 UTC (rev 1246) +++ trunk/src/build.c 2007-02-03 17:49:03 UTC (rev 1247) @@ -339,7 +339,7 @@ { msgwin_status_add(_("Command stopped because the current file has no extension.")); utils_beep(); - utils_free_pointers(locale_filename, executable); + utils_free_pointers(locale_filename, executable, NULL); return (GPid) 1; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.