diff --git a/ChangeLog b/ChangeLog index 05cc677..6aa7764 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-11-23 Riccardo Mottola + + * Framework/PCFileManager.m: + Initialize isDir value. + 2010-11-22 German Arias * Framework/GNUmakefile: Added ProjectLanguages.gorm * Headers/ProjectCenter/PCProjectInspector.h: diff --git a/Framework/PCFileManager.m b/Framework/PCFileManager.m index 2605dc1..61f0169 100644 --- a/Framework/PCFileManager.m +++ b/Framework/PCFileManager.m @@ -1,7 +1,7 @@ /* GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html - Copyright (C) 2000-2004 Free Software Foundation + Copyright (C) 2000-2010 Free Software Foundation Authors: Philippe C.D. Robert Serg Stoyan @@ -106,6 +106,7 @@ static PCFileManager *_mgr = nil; * component any more. Else, you may end up in an infinite loop if * _path = @"". */ + isDir = NO; while (_path != nil && ![_path isEqualToString: _oldPath] && ![fm fileExistsAtPath:_path isDirectory:&isDir])