From 34085c8a8436cd2337dc403aaf7ed63a5155e756 Mon Sep 17 00:00:00 2001 From: Sean Batson Date: Wed, 25 Feb 2015 01:07:14 -0500 Subject: [PATCH] Removed the address check, already a pointer. --- AFOAuth2Manager/AFOAuth2Manager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AFOAuth2Manager/AFOAuth2Manager.m b/AFOAuth2Manager/AFOAuth2Manager.m index 09b288f5..32e059ea 100644 --- a/AFOAuth2Manager/AFOAuth2Manager.m +++ b/AFOAuth2Manager/AFOAuth2Manager.m @@ -303,7 +303,7 @@ + (BOOL)storeCredential:(AFOAuthCredential *)credential { id securityAccessibility = nil; #if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 43000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) - if (&kSecAttrAccessibleWhenUnlocked != NULL) { + if (kSecAttrAccessibleWhenUnlocked != NULL) { securityAccessibility = (__bridge id)kSecAttrAccessibleWhenUnlocked; } #endif