GNOME Bugzilla – Bug 453033
gnome-panel crashed with SIGSEGV in idle_populate_func()
Last modified: 2008-02-29 16:56:51 UTC
The bug has been opened on https://bugs.launchpad.net/bugs/123480 "Binary package hint: gnome-panel I'm not sure what this program is. Nothing visible changed. Sorry I can't be of more help. ProblemType: Crash Architecture: i386 Date: Sun Jul 1 22:36:02 2007 DistroRelease: Ubuntu 7.10 ExecutablePath: /usr/bin/gnome-panel NonfreeKernelModules: nvidia Package: gnome-panel 1:2.19.4-0ubuntu1 ... .
+ Trace 145198
Thread 1 (process 13008)
Created attachment 91026 [details] [review] Remove double unlock and potential use after free Whilst not immediately explaining the segfault, I spotted an erroneous GDK_THREAD_LEAVE() and potential attempt to access the GtkRecentChooserMenuPrivate after the menu had been finalized.
That patch looks fine, please commit.
Matthias, one other detail that I've only just noticed is the use of gtk* functions within the DestroyNotify which suggests wrapping the gdk_threads_dispatch_free() with a ENTER/LEAVE: Index: gdk/gdk.c =================================================================== --- gdk/gdk.c (revision 17988) +++ gdk/gdk.c (working copy) @@ -479,9 +479,13 @@ gdk_threads_dispatch_free (gpointer data { GdkThreadsDispatch *dispatch = data; + GDK_THREADS_ENTER (); + if (dispatch->destroy && dispatch->data) dispatch->destroy (dispatch->data); + GDK_THREADS_LEAVE (); + g_slice_free (GdkThreadsDispatch, data); }
Committed gtkrecentchoosermenu.c patch, r18375: 2007-07-04 Chris Wilson <chris@chris-wilson.co.uk> * gtk/gtkrecentchoosermenu.c (idle_populate_func), (idle_populate_clean_up), (gtk_recent_chooser_menu_populate): Remove a surplus GDK_THREADS_LEAVE() and avoid a potential use after free in the source destroy notify. (#453033)
*** Bug 454455 has been marked as a duplicate of this bug. ***
*** Bug 456589 has been marked as a duplicate of this bug. ***
*** Bug 508093 has been marked as a duplicate of this bug. ***
*** Bug 512060 has been marked as a duplicate of this bug. ***
*** Bug 519461 has been marked as a duplicate of this bug. ***