Corrected a segfault.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@18703 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-02-28 13:33:52 +00:00
parent 135aa36da4
commit 784cb5c265
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2004-02-28 08:40 Gregory John Casamento <greg_casamento@yahoo.com>
* PCLib/PCProjectBuilder.m: -build: method now calls make: directly
instead of doing so in a thread. AppKit is not thread-safe
(it's not supposed to be :)) and this was causing a segfault when
building.
2003-11-08 Serg Stoyan <stoyan@on.com.ua>
* Fix segfault when closing Gorm and Renaissance projects (pathc by

View file

@ -602,9 +602,13 @@
[logOutput setString: @""];
[errorOutput setString: @""];
[self make: data];
/* AppKit is not multi-threaded. This is causing a segfault.
[NSThread detachNewThreadSelector: @selector(make:)
toTarget: self
withObject: data];
*/
}
- (void)buildDidTerminate