summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Dergachev <volodya@freedesktop.org>2005-08-06 05:19:42 +0000
committerVladimir Dergachev <volodya@freedesktop.org>2005-08-06 05:19:42 +0000
commit94a4eb1e7806bfcb52f6cd48f8071238da7e2cf8 (patch)
treeea9e5bb77bb5a3c599a5e99601f3623a88af8b7e /src
parentb8731903dff9fb2ec944a9e049cd81db2210b636 (diff)
Follow suggestion by Aapo Tahkola to fix giant memory leak from forgetting to free the key when entry was already found (presumably a common case).
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texenvprogram.c1
-rw-r--r--src/mesa/tnl/t_vp_build.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index f18ae041f3..4cb97469a5 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -1145,6 +1145,7 @@ void _mesa_UpdateTexEnvProgram( GLcontext *ctx )
cache_item(&ctx->Texture.env_fp_cache, hash, key, ctx->_TexEnvProgram);
} else {
+ FREE(key);
if (0) _mesa_printf("Found existing texenv program for key %x\n", hash);
}
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c
index 049bd20bd9..e62c5b374c 100644
--- a/src/mesa/tnl/t_vp_build.c
+++ b/src/mesa/tnl/t_vp_build.c
@@ -1473,6 +1473,7 @@ void _tnl_UpdateFixedFunctionProgram( GLcontext *ctx )
cache_item(&tnl->vp_cache, hash, key, ctx->_TnlProgram );
}
else {
+ FREE(key);
if (0)
_mesa_printf("Found existing TNL program for key %x\n", hash);
}