diff src/video/x11/SDL_x11video.c @ 4253:b0c979816d67 SDL-1.2

Improved bug #759 Don't crash if creating the X image failed.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 27 Sep 2009 22:29:13 +0000
parents 50b4ab8f8271
children 62849663f20a
line wrap: on
line diff
--- a/src/video/x11/SDL_x11video.c	Sun Sep 27 21:44:55 2009 +0000
+++ b/src/video/x11/SDL_x11video.c	Sun Sep 27 22:29:13 2009 +0000
@@ -1196,7 +1196,10 @@
 		current->w = width;
 		current->h = height;
 		current->pitch = SDL_CalculatePitch(current);
-		X11_ResizeImage(this, current, flags);
+		if (X11_ResizeImage(this, current, flags) < 0) {
+			current = NULL;
+			goto done;
+		}
 	}
 
 	/* Clear these flags and set them only if they are in the new set. */