summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/pack.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-06-21 05:07:53 +0200
committerMarek Olšák <[email protected]>2011-06-24 22:09:27 +0200
commit12c105b5de7dfb0e1c1f1fbe4ee71ddd54b020a7 (patch)
tree470c45dacdac18b84a51cf223eb4915e3f90f9f6 /src/mesa/main/pack.c
parente41a91cea764cc1ba95906251cd907d837225293 (diff)
mesa: fix a memory leak in _mesa_unpack_depth_span
NOTE: This is a candidate for the 7.10 branch. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/pack.c')
-rw-r--r--src/mesa/main/pack.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/pack.c b/src/mesa/main/pack.c
index d6470e351b8..7d541dcd4d2 100644
--- a/src/mesa/main/pack.c
+++ b/src/mesa/main/pack.c
@@ -4782,6 +4782,7 @@ _mesa_unpack_depth_span( struct gl_context *ctx, GLuint n,
}
zValues[i] = value & 0xffffff00;
}
+ free(depthTemp);
return;
}
else {