1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

Try letting NSString live longer

This commit is contained in:
Leo Franchi 2012-06-12 09:14:31 +02:00
parent b3ebcb59c0
commit f2503afd69

View File

@ -203,8 +203,9 @@ static BOOL AuthorizationExecuteWithPrivilegesAndWait(AuthorizationRef authoriza
NSDictionary* dict = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:success], TKInstallerResultKey, [info objectForKey:TKInstallerDelegateKey], TKInstallerDelegateKey, error, TKInstallerErrorKey, nil];
[self notifyDelegate:dict];
// TODO Do not release yet as seems to crash on some systems.
// [fromPath release];
[toPath release];
// [toPath release];
}