diff options
author | stuconnolly <stuart02@gmail.com> | 2010-08-19 22:10:52 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-08-19 22:10:52 +0000 |
commit | dabf6466f11e5936ee871b8b3dd573020a142586 (patch) | |
tree | da26bda69942c69c7fbea4d0d764fcc7baeeeb33 /Source/SPSQLExporter.m | |
parent | fdf2f07d8dfd4260c2dd5dd3326ad7206c1e30f1 (diff) | |
download | sequelpro-dabf6466f11e5936ee871b8b3dd573020a142586.tar.gz sequelpro-dabf6466f11e5936ee871b8b3dd573020a142586.tar.bz2 sequelpro-dabf6466f11e5936ee871b8b3dd573020a142586.zip |
Fix various potential memory leaks and general warnings as a result of static analysis.
Diffstat (limited to 'Source/SPSQLExporter.m')
-rw-r--r-- | Source/SPSQLExporter.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPSQLExporter.m b/Source/SPSQLExporter.m index c53a08ea..29385644 100644 --- a/Source/SPSQLExporter.m +++ b/Source/SPSQLExporter.m @@ -199,6 +199,8 @@ { // Check for cancellation flag if ([self isCancelled]) { + [errors release]; + [sqlString release]; [pool release]; return; } @@ -337,6 +339,7 @@ if ([self isCancelled]) { [connection cancelCurrentQuery]; [streamingResult cancelResultLoad]; + [streamingResult release]; [sqlExportPool release]; [pool release]; |