git-svn-id: https://svn.osgeo.org/grass/grass/trunk@72967 15284696-431f-4ddb-bdfa-cd5b030d7da7
@@ -910,6 +910,9 @@ int gsd_getimage(unsigned char **pixbuf, unsigned int *xsize,
*xsize = r - l + 1;
*ysize = t - b + 1;
+ if (!*xsize || !*ysize)
+ return (0);
+
*pixbuf = (unsigned char *)G_malloc((*xsize) * (*ysize) * 4); /* G_fatal_error */
if (!*pixbuf)