diff options
Diffstat (limited to 'Source/KeyChain.m')
-rw-r--r-- | Source/KeyChain.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/KeyChain.m b/Source/KeyChain.m index da3e761c..ec5ee03f 100644 --- a/Source/KeyChain.m +++ b/Source/KeyChain.m @@ -116,10 +116,10 @@ password = [NSString stringWithCString:passwordData length:passwordLength]; // Free the data allocated by SecKeychainFindGenericPassword: - status = SecKeychainItemFreeContent( - NULL, // No attribute data to release - passwordData // Release data - ); + SecKeychainItemFreeContent( + NULL, // No attribute data to release + passwordData // Release data + ); } return password; |