Improved bug #759

Don't crash if creating the X image failed.

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403924
This commit is contained in:
Sam Lantinga 2009-09-27 22:29:13 +00:00
parent b3d7109c38
commit f0e159b32a

View file

@ -1196,7 +1196,10 @@ SDL_Surface *X11_SetVideoMode(_THIS, SDL_Surface *current,
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. */