Skip to content

Commit

Permalink
Merge a89e77c into a24d068
Browse files Browse the repository at this point in the history
  • Loading branch information
kishikawakatsumi committed Jan 17, 2015
2 parents a24d068 + a89e77c commit 1c4e985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/UICKeyChainStore/UICKeyChainStore.m
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ - (NSArray *)allKeys

+ (NSArray *)allKeysWithItemClass:(UICKeyChainStoreItemClass)itemClass
{
CFTypeRef itemClassObject;
CFTypeRef itemClassObject = kSecClassGenericPassword;
if (itemClass == UICKeyChainStoreItemClassGenericPassword) {
itemClassObject = kSecClassGenericPassword;
} else if (itemClass == UICKeyChainStoreItemClassInternetPassword) {
Expand Down Expand Up @@ -710,7 +710,7 @@ + (NSArray *)allKeysWithItemClass:(UICKeyChainStoreItemClass)itemClass

+ (NSArray *)allItemsWithItemClass:(UICKeyChainStoreItemClass)itemClass
{
CFTypeRef itemClassObject;
CFTypeRef itemClassObject = kSecClassGenericPassword;
if (itemClass == UICKeyChainStoreItemClassGenericPassword) {
itemClassObject = kSecClassGenericPassword;
} else if (itemClass == UICKeyChainStoreItemClassInternetPassword) {
Expand Down

0 comments on commit 1c4e985

Please sign in to comment.