This commit is contained in:
Kelvin Sherlock 2016-08-18 09:02:45 -04:00
parent 0aeca5de81
commit 66506c39ba
1 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,9 @@ static unsigned ExtToTag(NSString *ext)
[window makeKeyAndOrderFront: nil];
[window makeFirstResponder: nil];
// if auto-released, the window will close.
return controller;
//return [controller autorelease];
}
@ -300,7 +302,9 @@ static unsigned ExtToTag(NSString *ext)
NSString *string = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
[self appendString: string];
[_handle readInBackgroundAndNotify];
[string release];
[_handle readInBackgroundAndNotify];
}
}