[Mesa-dev] [PATCH 2/6] mesa: fix potential mem leak in generate_mipmap_compressed()
Brian Paul
brianp at vmware.com
Thu Dec 1 16:45:29 PST 2011
Fixes a coverity warning.
---
src/mesa/main/mipmap.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c
index c621800..fd6e582 100644
--- a/src/mesa/main/mipmap.c
+++ b/src/mesa/main/mipmap.c
@@ -2048,6 +2048,7 @@ generate_mipmap_compressed(struct gl_context *ctx, GLenum target,
dstImage = _mesa_get_tex_image(ctx, texObj, target, level + 1);
if (!dstImage) {
_mesa_error(ctx, GL_OUT_OF_MEMORY, "generating mipmaps");
+ free(temp_dst);
return;
}
--
1.7.3.4
More information about the mesa-dev
mailing list