desktop-packages team mailing list archive
-
desktop-packages team
-
Mailing list archive
-
Message #161020
[Bug 1493638] Re: Simple GTK+ application with single label crashes XMir
Needs retesting.
** Tags added: xmir
** Changed in: xorg-server (Ubuntu)
Status: Triaged => Incomplete
--
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1493638
Title:
Simple GTK+ application with single label crashes XMir
Status in xorg-server package in Ubuntu:
Incomplete
Bug description:
The following program (compile with gcc -g -Wall test-gtk.c -o test-
gtk `pkg-config --cflags --libs gtk+-3.0`):
#include <gtk/gtk.h>
int main (int argc, char **argv)
{
gtk_init (&argc, &argv);
GtkWidget *w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_show (w);
GtkWidget *l = gtk_label_new ("M");
gtk_widget_show (l);
gtk_container_add (GTK_CONTAINER (w), l);
gtk_main ();
return 0;
}
Causes XMir to crash. Removing the label causes it to run fine.
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1493638/+subscriptions
References