diff options
author | Stuart Connolly <stuart02@gmail.com> | 2014-01-29 11:47:50 +0000 |
---|---|---|
committer | Stuart Connolly <stuart02@gmail.com> | 2014-01-29 11:47:50 +0000 |
commit | 288b2a0fc257908ae0c1890b1061803d1c0a28e3 (patch) | |
tree | 98ab3e820d9cf790c2dfc44c0f3921f80f5b1d3c /Source | |
parent | dfb5424d0f4d1fa347c7008ac578a2c7ab21be37 (diff) | |
download | sequelpro-288b2a0fc257908ae0c1890b1061803d1c0a28e3.tar.gz sequelpro-288b2a0fc257908ae0c1890b1061803d1c0a28e3.tar.bz2 sequelpro-288b2a0fc257908ae0c1890b1061803d1c0a28e3.zip |
Fix memory leaks.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPDataAdditions.m | 1 | ||||
-rw-r--r-- | Source/SPStringAdditions.m | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Source/SPDataAdditions.m b/Source/SPDataAdditions.m index 02a2f190..80ca72a1 100644 --- a/Source/SPDataAdditions.m +++ b/Source/SPDataAdditions.m @@ -106,6 +106,7 @@ *((UInt32*)decryptedBytes + ((encryptedLength / 4) - 3)) || *((UInt32*)decryptedBytes + ((encryptedLength / 4) - 2)) ) { + free(decryptedBytes); return nil; } diff --git a/Source/SPStringAdditions.m b/Source/SPStringAdditions.m index 29c0b43f..29b4144d 100644 --- a/Source/SPStringAdditions.m +++ b/Source/SPStringAdditions.m @@ -202,7 +202,11 @@ } } - return [NSString stringWithString:holder]; + NSString *result = [NSString stringWithString:holder]; + + [holder release]; + + return result; } /** |