From d73c1fa7bfed01a187e14c4d86cde70e7121c51b Mon Sep 17 00:00:00 2001 From: smatz Date: Tue, 24 Feb 2009 20:59:17 +0000 Subject: (svn r15568) -Cleanup: *allocT/AllocaM doesn't return NULL when allocating fails --- src/screenshot.cpp | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/screenshot.cpp') diff --git a/src/screenshot.cpp b/src/screenshot.cpp index 8b0aa4530..960c08416 100644 --- a/src/screenshot.cpp +++ b/src/screenshot.cpp @@ -127,10 +127,6 @@ static bool MakeBmpImage(const char *name, ScreenshotCallback *callb, void *user /* now generate the bitmap bits */ void *buff = MallocT(padw * maxlines * bpp); // by default generate 128 lines at a time. - if (buff == NULL) { - fclose(f); - return false; - } memset(buff, 0, padw * maxlines); // zero the buffer to have the padding bytes set to 0 /* start at the bottom, since bitmaps are stored bottom up. */ @@ -255,11 +251,6 @@ static bool MakePNGImage(const char *name, ScreenshotCallback *callb, void *user /* now generate the bitmap bits */ void *buff = MallocT(w * maxlines * bpp); // by default generate 128 lines at a time. - if (buff == NULL) { - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(f); - return false; - } memset(buff, 0, w * maxlines * bpp); y = 0; @@ -355,10 +346,6 @@ static bool MakePCXImage(const char *name, ScreenshotCallback *callb, void *user /* now generate the bitmap bits */ uint8 *buff = MallocT(w * maxlines); // by default generate 128 lines at a time. - if (buff == NULL) { - fclose(f); - return false; - } memset(buff, 0, w * maxlines); // zero the buffer to have the padding bytes set to 0 y = 0; -- cgit v1.2.3-54-g00ecf