diff options
author | Vinson Lee <[email protected]> | 2009-11-20 12:11:55 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-11-20 12:11:55 -0800 |
commit | e26135a744f740430e3dc341fa692544ba99c11e (patch) | |
tree | 030ba2384bd7ea47b5a243e25246ea8715a9f083 /progs | |
parent | c88b18a4df753205321ce1f7ddcd99244b670a1e (diff) |
progs/util: Exit RawImageGetData early if malloc fails.
Prevents a null pointer deference later on.
Diffstat (limited to 'progs')
-rw-r--r-- | 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 1e1183cf9ac..81cb626e911 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; |