OSDN Git Service

sdl: remove NULL check, g_malloc0 can't fail
authorAlon Levy <alevy@redhat.com>
Fri, 24 Feb 2012 21:19:26 +0000 (23:19 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 27 Feb 2012 08:46:51 +0000 (09:46 +0100)
Signed-off-by: Alon Levy <alevy@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
ui/sdl.c

index 6f8091c..f6f711c 100644 (file)
--- 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;