Skip to content
This repository has been archived by the owner on Aug 24, 2019. It is now read-only.

Commit

Permalink
Merge pull request #40 from kyamada-github/fix-a-memory-leak
Browse files Browse the repository at this point in the history
fix a memory leak
  • Loading branch information
soffes committed Aug 2, 2013
2 parents cbfaf53 + 27edd68 commit 977ad61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SSKeychain/SSKeychainQuery.m
Expand Up @@ -101,7 +101,7 @@ - (NSArray *)fetchAll:(NSError *__autoreleasing *)error {
return nil;
}

return (__bridge NSArray *)result;
return (__bridge_transfer NSArray *)result;
}


Expand Down

0 comments on commit 977ad61

Please sign in to comment.