Merge branch 'mesa_7_6_branch' into mesa_7_7_branch
[mesa.git] / src / mesa / drivers / dri / i810 / i810tris.c
index b508496fb6953a075455eaea187fc00a09480686..213ba541cee24a5da6fab266c47b240430e585bf 100644 (file)
@@ -270,7 +270,8 @@ do {                                                        \
 
 #define LOCAL_VARS(n)                                                  \
    i810ContextPtr imesa = I810_CONTEXT(ctx);                           \
-   GLuint color[n], spec[n];                                           \
+   GLuint color[n] = { 0 };                                            \
+   GLuint spec[n] = { 0 };                                             \
    GLuint coloroffset = (imesa->vertex_size == 4 ? 3 : 4);             \
    GLboolean havespec = (imesa->vertex_size > 4);                      \
    (void) color; (void) spec; (void) coloroffset; (void) havespec;