summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-11-20 12:11:55 -0800
committerVinson Lee <vlee@vmware.com>2009-11-20 12:11:55 -0800
commite26135a744f740430e3dc341fa692544ba99c11e (patch)
tree030ba2384bd7ea47b5a243e25246ea8715a9f083 /progs
parentc88b18a4df753205321ce1f7ddcd99244b670a1e (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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/util/readtex.c b/progs/util/readtex.c
index 1e1183cf9a..81cb626e91 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;