diff options
author | rowanbeentje <rowan@beent.je> | 2010-03-23 21:08:33 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-03-23 21:08:33 +0000 |
commit | c2351f2220ac01cac614de93bad05022d89d7790 (patch) | |
tree | 253cb24dac45eaa8a29924d3fe4017d1cad684ce /Source/SPConnectionController.m | |
parent | 4755e7c7209582b09f59905540f459accc32acb3 (diff) | |
download | sequelpro-c2351f2220ac01cac614de93bad05022d89d7790.tar.gz sequelpro-c2351f2220ac01cac614de93bad05022d89d7790.tar.bz2 sequelpro-c2351f2220ac01cac614de93bad05022d89d7790.zip |
- Remove observers for key paths when dealloc'ing objects to fix later crashes when changing those keyvalues (eg changing query editor background colour after closing windows - http://log.sequelpro.com/view/44 )
- Fix a memory leak of a prefs reference in CMTextView
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r-- | Source/SPConnectionController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 869bd35c..7e84a7f0 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -125,7 +125,8 @@ } - (void) dealloc -{ +{ + [prefs removeObserver:self forKeyPath:SPFavorites]; [keychain release]; [prefs release]; if (favorites) [favorites release]; |