After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 686826 - gtk application crashes when window border close button is used
gtk application crashes when window border close button is used
Status: RESOLVED INVALID
Product: gtk+
Classification: Platform
Component: Backend: Quartz
3.6.x
Other Mac OS
: Normal critical
: ---
Assigned To: gtk-quartz maintainers
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2012-10-24 22:06 UTC by Daniel Svensson
Modified: 2012-10-24 22:13 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Daniel Svensson 2012-10-24 22:06:54 UTC
When pressing the red close button in the window border the GTK application reliably crashes. It doesn't seem to matter if it'sa toplevel window, or an about dialog. Red button = instant death.

Test application:
public class CrashingWindow
{
	public static void main(string[] args)
	{
		Gtk.init(ref args);

		var window = new Gtk.Window();
		window.show();

		Gtk.main();
	}
}

Debug details:
http://30a2d709d7791c22.paste.se/

Specific GTK version: 3.6.1

If an application instead for some reason call the g_application_quit function, it will shutdown properly without a crash.
Comment 1 Daniel Svensson 2012-10-24 22:12:53 UTC
Gah.. broken patches noticed just after pressing submit. This issue may be closed, not sure if I can do that myself though.
Comment 2 Daniel Svensson 2012-10-24 22:13:22 UTC
there..