summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-11-23 01:09:06 -0500
committerVinson Lee <vlee@vmware.com>2009-12-04 00:11:02 -0800
commitc33f022d25c79164ebd684c25c6aedd65d0bb9ee (patch)
treea9426075d4312d30578f759a8c655d1e2d3859bb
parentb010f779834f743b6332825e975117ac7995ab16 (diff)
downloadglu-c33f022d25c79164ebd684c25c6aedd65d0bb9ee.tar.gz
glu/sgi: Fix memory leak in bitmapBuild2DMipmaps.
(cherry picked from commit 5b925b7daa566d799c4f50911a7fcca114131503)
-rw-r--r--src/libutil/mipmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/mipmap.c b/src/libutil/mipmap.c
index 223621f..c5faebd 100644
--- a/src/libutil/mipmap.c
+++ b/src/libutil/mipmap.c
@@ -3762,6 +3762,7 @@ static int bitmapBuild2DMipmaps(GLenum target, GLint internalFormat,
glPixelStorei(GL_UNPACK_SKIP_PIXELS,psm.unpack_skip_pixels);
glPixelStorei(GL_UNPACK_ROW_LENGTH, psm.unpack_row_length);
glPixelStorei(GL_UNPACK_SWAP_BYTES, psm.unpack_swap_bytes);
+ free(newImage);
return GLU_OUT_OF_MEMORY;
}
}