Comment 129 for bug 34199

Revision history for this message
mizu (michal-zimen) wrote :

Hi,

Sorry, I was out for a longer time...

So, I tried to upgrade evolution-exchange with last update 2.24.2, but there is still the same problem.

The fix which helps me looks like this:

--- mail-stub-exchange-old.c 2008-12-04 12:43:18.000000000 +0100
+++ mail-stub-exchange.c 2008-12-04 12:43:45.000000000 +0100
@@ -1190,7 +1190,8 @@
    */
   while (my_mmsg->seq != mmsg->seq) {
    mfld->deleted_count++;
- message_removed (stub, mfld, my_mmsg->href);
+ if (my_mmsg->href != 0x0 )
+ message_removed (stub, mfld, my_mmsg->href);
    changes = TRUE;
    my_i--;
    my_mmsg = mfld->messages->pdata[my_i];

No guaranty, it's only workaround fix until I will be able to find true reason.