diff options
author | Vinson Lee <[email protected]> | 2009-11-24 01:23:12 -0500 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-11-24 01:23:12 -0500 |
commit | 326b66d724754ca97012501db1c7c62d7d41a457 (patch) | |
tree | 3e7241584b57f75bc82951db5bfad2247556bc4f /src | |
parent | 364070b1f2b08d43fb205ec198894a35bec6b2f3 (diff) |
glu/sgi: Fix memory leak in gluBuild3DMipmapLevelsCore.
Diffstat (limited to 'src')
-rw-r--r-- | src/glu/sgi/libutil/mipmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glu/sgi/libutil/mipmap.c b/src/glu/sgi/libutil/mipmap.c index c5faebd6a35..a5d07a59cf7 100644 --- a/src/glu/sgi/libutil/mipmap.c +++ b/src/glu/sgi/libutil/mipmap.c @@ -8232,6 +8232,7 @@ static int gluBuild3DMipmapLevelsCore(GLenum target, GLint internalFormat, glPixelStorei(GL_UNPACK_SWAP_BYTES, psm.unpack_swap_bytes); glPixelStorei(GL_UNPACK_SKIP_IMAGES, psm.unpack_skip_images); glPixelStorei(GL_UNPACK_IMAGE_HEIGHT, psm.unpack_image_height); + free(srcImage); return GLU_OUT_OF_MEMORY; } } |