| Submitter | Alon Levy |
|---|---|
| Date | Feb. 22, 2012, 9:09 p.m. |
| Message ID | <1329944981-28311-5-git-send-email-alevy@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/142534/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/ui/sdl.c b/ui/sdl.c index 6f8091c..f6f711c 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;
Signed-off-by: Alon Levy <alevy@redhat.com> --- ui/sdl.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-)