Module: Mesa Branch: mesa_7_7_branch Commit: e26135a744f740430e3dc341fa692544ba99c11e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e26135a744f740430e3dc341fa692544ba99c11e
Author: Vinson Lee <[email protected]> Date: Fri Nov 20 12:11:55 2009 -0800 progs/util: Exit RawImageGetData early if malloc fails. Prevents a null pointer deference later on. --- 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 1e1183c..81cb626 100644 --- a/progs/util/readtex.c +++ b/progs/util/readtex.c @@ -230,6 +230,7 @@ static void RawImageGetData(rawImageRec *raw, TK_RGBImageRec *final) final->data = (unsigned char *)malloc((raw->sizeX+1)*(raw->sizeY+1)*4); if (final->data == NULL) { fprintf(stderr, "Out of memory!\n"); + return; } ptr = final->data; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
