GNOME Bugzilla – Bug 94361
gtkdial example fixage
Last modified: 2004-12-22 21:47:04 UTC
In GtkDial examples ::destroy method: if (dial->adjustment) g_object_unref (GTK_OBJECT (dial->adjustment)); Should be if (dial->adjustment) { g_object_unref (GTK_OBJECT (dial->adjustment)); dial->adjustment = NULL; } (Olivier Fourdan pointed out on gtk-app-devel-list that the gtkdial example segfaults if destroyed twice)