[gtk+/gtk-2-24] [Bug 664238] GTK apps crash when dragging something
- From: John Ralls <jralls src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-2-24] [Bug 664238] GTK apps crash when dragging something
- Date: Sun, 20 Nov 2011 18:29:02 +0000 (UTC)
commit 7c77f9a69ab4dfea9f015cf09db6d501576523aa
Author: John Ralls <jralls ceridwen us>
Date: Sat Nov 19 11:33:28 2011 -0800
[Bug 664238] GTK apps crash when dragging something
Corrects a bad condition in a test in fadc82ad.
gtk/gtkquartz.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkquartz.c b/gtk/gtkquartz.c
index 286b418..2f8122a 100644
--- a/gtk/gtkquartz.c
+++ b/gtk/gtkquartz.c
@@ -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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]