[gtk+] [Bug 664238] GTK apps crash when dragging something



commit eafff409c9992637edc6270ec07d4985b322931c
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 085b98f4

 gtk/gtkquartz.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkquartz.c b/gtk/gtkquartz.c
index 30261ff..e98dbb4 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]