Mesa (master): progs/util: Fix memory leak if malloc fails in tkRGBImageLoad.

Vinson Lee vlee at kemper.freedesktop.org
Tue Nov 17 19:05:58 UTC 2009


Module: Mesa
Branch: master
Commit: 786d539511eb3c5a4101b11b7f8e90d60123ac46
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=786d539511eb3c5a4101b11b7f8e90d60123ac46

Author: Vinson Lee <vlee at vmware.com>
Date:   Tue Nov 17 11:04:24 2009 -0800

progs/util: Fix memory leak if malloc fails in tkRGBImageLoad.

---

 progs/util/readtex.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/progs/util/readtex.c b/progs/util/readtex.c
index ec27e20..c57b66b 100644
--- a/progs/util/readtex.c
+++ b/progs/util/readtex.c
@@ -250,6 +250,7 @@ static TK_RGBImageRec *tkRGBImageLoad(const char *fileName)
    final = (TK_RGBImageRec *)malloc(sizeof(TK_RGBImageRec));
    if (final == NULL) {
       fprintf(stderr, "Out of memory!\n");
+      RawImageClose(raw);
       return NULL;
    }
    final->sizeX = raw->sizeX;




More information about the mesa-commit mailing list