diff options
author | rowanbeentje <rowan@beent.je> | 2012-01-21 18:46:25 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-01-21 18:46:25 +0000 |
commit | fd3b64dfbbc445d52961784176eec8572f2c7880 (patch) | |
tree | b64ae30c76e48c682a68eeb430594b3b91585ee9 /Frameworks/MCPKit | |
parent | 19e97afe748dff842b11640b36a2bf4241e8a19f (diff) | |
download | sequelpro-fd3b64dfbbc445d52961784176eec8572f2c7880.tar.gz sequelpro-fd3b64dfbbc445d52961784176eec8572f2c7880.tar.bz2 sequelpro-fd3b64dfbbc445d52961784176eec8572f2c7880.zip |
- Make SPConnectionController a NSConnectionView subclass so that retain cycles caused by manually loading libs with bindings to File's Owner are automatically handled, fixing leaks of SPConnectionController and items it retain including any MCPConnection; this will fix issues with MCPConnections attempting to reconnect but no longer having an associated SPDatabaseDocument
Diffstat (limited to 'Frameworks/MCPKit')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m index 2c4f424d..04dcf50d 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.m @@ -3255,7 +3255,7 @@ void pingThreadCleanup(void *pingDetails) delegate = nil; // Ensure the query lock is unlocked, thereafter setting to nil in case of pending calls - [self unlockConnection]; + if ([connectionLock condition] != MCPConnectionIdle) [self unlockConnection]; [connectionLock release], connectionLock = nil; // Clean up connections if necessary |