[Users] [Bug 3496] New: Crash on double notification popup

noreply at thewildbeast.co.uk noreply at thewildbeast.co.uk
Sat Aug 15 16:09:28 CEST 2015


http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3496

            Bug ID: 3496
           Summary: Crash on double notification popup
    Classification: Unclassified
           Product: Claws Mail (Windows)
           Version: 3.12.0
          Hardware: PC
                OS: Windows 7
            Status: NEW
          Severity: normal
          Priority: P3
         Component: default
          Assignee: users at lists.claws-mail.org
          Reporter: richard.clawsmail at rhughes.net

To reproduce:
1) Install
2) Add an RSS feed with RSSyl
3) Click on newly-added folder: crash

That was the first way I found to cause multiple popups to be created
concurrently. There may be others and hence this may be a duplicate of either
bug 3090 or bug 3130 (or both).

The problem may also occur on non-Windows platforms, but does require a build
without HAVE_LIBNOTIFY. The workaround is to disable
Plugins/Notification/Popup.

Fix:

--- notification_popup.c.orig   2015-07-19 12:19:13.000000000 +0100
+++ notification_popup.c        2015-07-23 21:33:14.739522800 +0100
@@ -566,8 +566,10 @@
     ppopup->msg_path = NULL;
   }

-  if(ppopup->label2)
+  if(ppopup->label2) {
     gtk_widget_destroy(ppopup->label2);
+    ppopup->label2 = NULL;
+  }

   message = g_strdup_printf(ngettext("%d new message",
                                     "%d new messages",

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Users mailing list