[Bug 664238] GTK apps crash when dragging something

Corrects a bad condition in a test in 085b98f4
This commit is contained in:
John Ralls 2011-11-19 11:33:28 -08:00
parent aa17b2c578
commit eafff409c9

View File

@ -39,7 +39,7 @@ _gtk_quartz_create_image_from_pixbuf (GdkPixbuf *pixbuf)
pixbuf_width = gdk_pixbuf_get_width (pixbuf);
pixbuf_height = gdk_pixbuf_get_height (pixbuf);
g_return_val_if_fail (pixbuf_width == 0 || pixbuf_height == 0, NULL);
g_return_val_if_fail (pixbuf_width != 0 && pixbuf_height != 0, NULL);
rowstride = gdk_pixbuf_get_rowstride (pixbuf);
has_alpha = gdk_pixbuf_get_has_alpha (pixbuf);