From 91e82180ad846e27737a7294a2ccebb5f224584d Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 3 Jul 2007 14:17:31 +0000 Subject: [PATCH] Monotone-Parent: 6dec7484ebbfdc7dfd486aa0a64dac77680a6a66 Monotone-Revision: bfd8aebdc5bf06b13f52fd7b6c23ae44f61d22db Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-07-03T14:17:31 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 7 +++++++ Main/SOGo.m | 2 ++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 176fc0041..a7cf1f7bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-07-03 Wolfgang Sourdeau + + * Main/SOGo.m ([SOGo + -_checkTableWithCM:cmtableURL:urlandType:tableType]): empty the + result set if the query has caused no exception. Otherwise we get + an "evaluation is in progress exception". + 2007-06-29 Wolfgang Sourdeau * SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults diff --git a/Main/SOGo.m b/Main/SOGo.m index b4afe3a28..efe2accf1 100644 --- a/Main/SOGo.m +++ b/Main/SOGo.m @@ -169,6 +169,8 @@ static BOOL debugObjectAllocation = NO; [NSString stringWithContentsOfFile: descFile]]) [self logWithFormat: @"table '%@' successfully created!", tableName]; } + else + [tc cancelFetch]; [cm releaseChannel: tc];