SF.net SVN: geany:[4325] trunk

elextr at users.sourceforge.net elextr at xxxxx
Fri Oct 16 00:53:00 UTC 2009


Revision: 4325
          http://geany.svn.sourceforge.net/geany/?rev=4325&view=rev
Author:   elextr
Date:     2009-10-16 00:53:00 +0000 (Fri, 16 Oct 2009)

Log Message:
-----------
Fix crash opening project when Geany started with no geany.conf.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/build.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-10-15 19:20:12 UTC (rev 4324)
+++ trunk/ChangeLog	2009-10-16 00:53:00 UTC (rev 4325)
@@ -1,3 +1,9 @@
+2009-10-16  Lex Trotman  <elextr(at)gmail(dot)com>
+
+ * src/build.c:
+   Fix crash opening project when Geany started with no geany.conf.
+
+
 2009-10-15  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * scintilla/ScintillaBase.h, scintilla/ScintillaBase.cxx, src/utils.c,

Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c	2009-10-15 19:20:12 UTC (rev 4324)
+++ trunk/src/build.c	2009-10-16 00:53:00 UTC (rev 4325)
@@ -2283,8 +2283,8 @@
 				ft->error_regex_string = g_key_file_get_string(config, "build_settings", "error_regex", NULL);
 			break;
 		case GEANY_BCS_PROJ:
-			if (non_ft_proj == NULL)
-				non_ft_proj = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_NON_FT]);
+			if (non_ft_pref == NULL)
+				non_ft_pref = g_new0(GeanyBuildCommand, build_groups_count[GEANY_GBG_NON_FT]);
 			basedir = project_get_base_path();
 			if (basedir == NULL)
 				basedir = g_strdup("%d");


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list