Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Personal code style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Aug 7, 2011
1 parent 0d619ad commit 9d3ba61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Xcode/Unlock/Keychain.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ - (NSMutableArray*) volumesAndPasswordsWithService:(NSString*) service {
}

[query release];
if (results != nil)
CFRelease(results);
if (results != nil) {
CFRelease(results);
}

return volumesAndPasswords;
}
Expand Down

0 comments on commit 9d3ba61

Please sign in to comment.