Module: Mesa Branch: master Commit: 7f7b7b9a0207ae9e51f68e7f9ddc2834f4727fc9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7f7b7b9a0207ae9e51f68e7f9ddc2834f4727fc9
Author: Vinson Lee <[email protected]> Date: Thu Feb 18 01:17:26 2010 -0800 progs/redbook: Fix array out-of-bounds access. --- progs/redbook/combiner.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/progs/redbook/combiner.c b/progs/redbook/combiner.c index 92e4de4..7682e0c 100644 --- a/progs/redbook/combiner.c +++ b/progs/redbook/combiner.c @@ -249,7 +249,7 @@ static void display(void) glCallList(1); glPopMatrix(); - constColor[4] = 0.8; + constColor[3] = 0.8; glTexEnvfv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, constColor); glPushMatrix(); glTranslatef(4.0, 3.0, 0.0); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
