diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-08-05 21:58:03 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-08-05 21:58:03 +0000 |
commit | 7ed889b0c5e05d4ee0cc67ae9f0edaf4296e233b (patch) | |
tree | d7cc5a17662990a3724fa3cbc791ea47a771af35 | |
parent | ed4617c7fc292ac15a3cb340b2247d58793d3ca4 (diff) | |
download | sequelpro-7ed889b0c5e05d4ee0cc67ae9f0edaf4296e233b.tar.gz sequelpro-7ed889b0c5e05d4ee0cc67ae9f0edaf4296e233b.tar.bz2 sequelpro-7ed889b0c5e05d4ee0cc67ae9f0edaf4296e233b.zip |
• fixed: release query string which would be inserted into the Custom Query editor after opening a SQL file if the user does not connect to a server
-rw-r--r-- | Source/TableDocument.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 668f6b46..6978428d 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -2338,6 +2338,7 @@ if (selectedDatabase) [selectedDatabase release]; if (mySQLVersion) [mySQLVersion release]; [allDatabases release]; + if(queryEditorInitString) [queryEditorInitString release]; [super dealloc]; } |