From 5018e11f8f287f975d7a903eddeaa5b37eb4c2eb Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Tue, 1 Jul 2014 20:33:29 -0400 Subject: [PATCH] ide/Project: Fixed a crash in LegacyLoad introduced by eff6d0cfcbf71a54870f8a965174bb641b24fcb1 --- ide/src/project/Project.ec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ide/src/project/Project.ec b/ide/src/project/Project.ec index 0baa9ff..4cf6658 100644 --- a/ide/src/project/Project.ec +++ b/ide/src/project/Project.ec @@ -4029,12 +4029,11 @@ void ProjectConfig::LegacyProjectConfigLoad(File f) Project LegacyAsciiLoadProject(File f, const char * filePath) { Project project = null; - //ProjectNode node = null; int pos; char parentPath[MAX_LOCATION]; char section[128] = ""; char subSection[128] = ""; - ProjectNode parent = project.topNode; + ProjectNode parent = null; bool configurationsPresent = false; f.Seek(0, start); -- 1.8.3.1