mesa: Assert that array index is not negative.
authorVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 08:19:30 +0000 (00:19 -0800)
committerVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 08:19:30 +0000 (00:19 -0800)
src/mesa/main/texcompress_fxt1.c

index 71e40dd..149853f 100644 (file)
@@ -528,6 +528,7 @@ fxt1_lloyd (GLfloat vec[][MAX_COMP], GLint nv,
 #else
          GLint best = fxt1_bestcol(vec, nv, input[k], nc, &err);
 #endif
+         assert(best >= 0);
          /* add in closest color */
          for (i = 0; i < nc; i++) {
             sum[best][i] += input[k][i];