propagate from branch 'ca.inverse.sogo.1_3_11' (head fd3f07ba5f4f69cd1854b37655cacacbbf850787)

to branch 'ca.inverse.sogo' (head 8a3245a182ef9dff851cee5ace6db39fa33a3b6c)

Monotone-Parent: 8a3245a182ef9dff851cee5ace6db39fa33a3b6c
Monotone-Parent: fd3f07ba5f4f69cd1854b37655cacacbbf850787
Monotone-Revision: 120ae771577fbc85a9d527667354ae451deab5eb

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-12-08T15:05:45
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-12-08 15:05:45 +00:00
3 changed files with 10 additions and 2 deletions
+8
View File
@@ -1,3 +1,11 @@
2011-12-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* GCSFolder.m (-releaseChannel:): perform the debug logging BEFORE
the channel is released, to avoid a crash.
* GCSFolderManager.m (-releaseChannel:): perform the debug logging BEFORE
the channel is released, to avoid a crash.
2011-11-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* GCSFolder.m
+1 -1
View File
@@ -228,8 +228,8 @@ static GCSStringFormatter *stringFormatter = nil;
}
- (void)releaseChannel:(EOAdaptorChannel *)_channel {
if (debugOn) [self debugWithFormat:@"releasing channel: %@", _channel];
[[self _channelManager] releaseChannel:_channel];
if (debugOn) [self debugWithFormat:@"released channel: %@", _channel];
}
- (BOOL)canConnectStore {
+1 -1
View File
@@ -221,8 +221,8 @@ static NSCharacterSet *asciiAlphaNumericCS = nil;
return ch;
}
- (void)releaseChannel:(EOAdaptorChannel *)_channel {
if (debugOn) [self debugWithFormat:@"releasing channel: %@", _channel];
[[self channelManager] releaseChannel:_channel];
if (debugOn) [self debugWithFormat:@"released channel: %@", _channel];
}
- (BOOL)canConnect {