diff options
author | Vinson Lee <[email protected]> | 2009-12-08 14:31:38 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-08 14:33:33 -0800 |
commit | d88f3b946804f9a3e8cad4f8896e6be488fec2b5 (patch) | |
tree | 85735705ec401cd07de724896f323a621ceb3535 | |
parent | 54b0ed8360019fc6e0234c2c3413be40fe4d3b59 (diff) |
mesa: Fix array out-of-bounds access by _mesa_TexParameterfv.
_mesa_TexParameterfv calls set_tex_parameteri, which uses the
params argument as an array.
-rw-r--r-- | src/mesa/main/texparam.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 4ce8c8593a9..4c1f690ff1c 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -592,8 +592,10 @@ _mesa_TexParameterfv(GLenum target, GLenum pname, const GLfloat *params) case GL_DEPTH_TEXTURE_MODE_ARB: { /* convert float param to int */ - GLint p = (GLint) params[0]; - need_update = set_tex_parameteri(ctx, texObj, pname, &p); + GLint p[4]; + p[0] = (GLint) params[0]; + p[1] = p[2] = p[3] = 0; + need_update = set_tex_parameteri(ctx, texObj, pname, p); } break; |