diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-06 22:29:50 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-06 22:29:50 +0000 |
commit | 98321e0139af73928307da87ed31245b858e86d0 (patch) | |
tree | 1ca248b1785660e63eab1a0f17a917562752e291 /Source/SPDotExporter.m | |
parent | 2831094df859915cc3af9bc275bd35753aff8192 (diff) | |
download | sequelpro-98321e0139af73928307da87ed31245b858e86d0.tar.gz sequelpro-98321e0139af73928307da87ed31245b858e86d0.tar.bz2 sequelpro-98321e0139af73928307da87ed31245b858e86d0.zip |
Fix various memory leaks as a result of static analysis.
Diffstat (limited to 'Source/SPDotExporter.m')
-rw-r--r-- | Source/SPDotExporter.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPDotExporter.m b/Source/SPDotExporter.m index 044065e5..9296b231 100644 --- a/Source/SPDotExporter.m +++ b/Source/SPDotExporter.m @@ -106,6 +106,7 @@ { // Check for cancellation flag if ([self isCancelled]) { + [fkInfo release]; [pool release]; return; } |