Improved bug #759
Don't crash if creating the X image failed.
--- 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. */