GNOME Bugzilla – Bug 126579
gdk_display_close tries to dereference a NULL pointer.
Last modified: 2004-12-22 21:47:04 UTC
1. gdk_display_close calls 2. g_object_run_dispose which calls 3. gdk_display_x11_dispose which calls 4. G_OBJECT_CLASS (parent_class)->dispose (object) which calls 5. gdk_display_dispose which calls 6. gdk_display_manager_set_default_display (gdk_display_manager_get(), NULL); which calls 7. _gdk_windowing_set_default_display (display) which does 8. g_free (display_x11->startup_notification_id) even if display_x11 is NULL (by step 6). Stack trace from gdb:
+ Trace 41592
This bug is also in CVS (I checked CVS Tuesday 11 Nov).
*** This bug has been marked as a duplicate of 85715 ***