summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libutil/mipmap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/mipmap.c b/src/libutil/mipmap.c
index 4139c30..223621f 100644
--- a/src/libutil/mipmap.c
+++ b/src/libutil/mipmap.c
@@ -7384,6 +7384,8 @@ int gluScaleImage3D(GLenum format,
afterImage = malloc(imageSize3D(widthOut, heightOut, depthOut, format,
GL_UNSIGNED_SHORT));
if (beforeImage == NULL || afterImage == NULL) {
+ free(beforeImage);
+ free(afterImage);
return GLU_OUT_OF_MEMORY;
}
retrieveStoreModes3D(&psm);