From: Alon Levy Date: Fri, 24 Feb 2012 21:19:26 +0000 (+0200) Subject: sdl: remove NULL check, g_malloc0 can't fail X-Git-Tag: v1.1-rc0~291^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63ea491d4efc1e02cda3d335db3a46c81adf14ee;p=thirdparty%2Fqemu.git sdl: remove NULL check, g_malloc0 can't fail Signed-off-by: Alon Levy Signed-off-by: Gerd Hoffmann --- diff --git a/ui/sdl.c b/ui/sdl.c index 6f8091c7256..f6f711c1bba 100644 --- a/ui/sdl.c +++ b/ui/sdl.c @@ -167,10 +167,6 @@ static PixelFormat sdl_to_qemu_pixelformat(SDL_PixelFormat *sdl_pf) static DisplaySurface* sdl_create_displaysurface(int width, int height) { DisplaySurface *surface = (DisplaySurface*) g_malloc0(sizeof(DisplaySurface)); - if (surface == NULL) { - fprintf(stderr, "sdl_create_displaysurface: malloc failed\n"); - exit(1); - } surface->width = width; surface->height = height;