diff options
Diffstat (limited to 'Source/SPTableCopy.m')
-rw-r--r-- | Source/SPTableCopy.m | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/SPTableCopy.m b/Source/SPTableCopy.m index 5af46972..bb819371 100644 --- a/Source/SPTableCopy.m +++ b/Source/SPTableCopy.m @@ -57,9 +57,7 @@ [createTableStatement insertString:@"." atIndex:13]; [createTableStatement insertString:[targetDB backtickQuotedString] atIndex:13]; - [connection queryString:createTableStatement]; - [createTableStatement release]; - + [connection queryString:createTableStatement]; if ([connection queryErrored]) { SPBeginAlertSheet(NSLocalizedString(@"Failed to copy table", @"copy table error message"), @@ -73,6 +71,9 @@ } else { NSLog(@"Could not copy non-table/view %@", tableName); } + + [createTableStatement release]; + return NO; } |