diff options
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]; |