From: José Aliste Date: Fri, 26 Nov 2010 14:56:45 +0000 (-0300) Subject: document: create_thumbnail_frame should return NULL when X-Git-Tag: EVINCE_2_91_3~4 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=3d8180a605e8c98172e9e0e739e22b7f50ed7bad;p=evince.git document: create_thumbnail_frame should return NULL when source_pixbuf is NULL and width and height are not positive. Fixes bug #594408 --- diff --git a/libdocument/ev-document-misc.c b/libdocument/ev-document-misc.c index bfba1ec8..e710edb8 100644 --- a/libdocument/ev-document-misc.c +++ b/libdocument/ev-document-misc.c @@ -56,7 +56,7 @@ create_thumbnail_frame (int width, } /* make sure no one is passing us garbage */ - g_assert (width_r >= 0 && height_r >= 0); + g_return_val_if_fail (width_r >= 0 && height_r >= 0, NULL); retval = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,