Author: megabajt                     Date: Wed Oct 20 13:23:52 2010 GMT
Module: packages                      Tag: HEAD
---- Log message:
- fixes crash on message send (bg#630700)

---- Files affected:
packages/evolution:
   evolution-message-send-crash.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/evolution/evolution-message-send-crash.patch
diff -u /dev/null packages/evolution/evolution-message-send-crash.patch:1.1
--- /dev/null   Wed Oct 20 15:23:52 2010
+++ packages/evolution/evolution-message-send-crash.patch       Wed Oct 20 
15:23:47 2010
@@ -0,0 +1,24 @@
+From 84f0a15b38c9934cf6cfef7f1b988cce20c11501 Mon Sep 17 00:00:00 2001
+From: Milan Crha <[email protected]>
+Date: Wed, 29 Sep 2010 09:12:52 +0000
+Subject: Bug #630700 - Crash on message send
+
+---
+diff --git a/mail/mail-ops.c b/mail/mail-ops.c
+index ae2d12d..7f84b3b 100644
+--- a/mail/mail-ops.c
++++ b/mail/mail-ops.c
+@@ -607,8 +607,9 @@ mail_send_message (struct _send_queue_msg *m,
+                               g_string_append_printf (
+                                       err, _("Failed to append to %s: %s\n"
+                                       "Appending to local 'Sent' folder 
instead."),
+-                                      sent_folder_uri, local_error->message);
+-                              g_clear_error (&local_error);
++                                      sent_folder_uri, local_error ? 
local_error->message : _("Unknown error"));
++                              if (local_error)
++                                      g_clear_error (&local_error);
+                       }
+               }
+ 
+--
+cgit v0.8.3.1
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to