vbo: fix incorrect loop limit in bind_array_obj()
authorBrian Paul <brianp@vmware.com>
Thu, 21 May 2009 22:54:35 +0000 (16:54 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 21 May 2009 22:54:35 +0000 (16:54 -0600)
commit8da09e6924ca22ba7951d5a7673dfab2a711a997
treeba359bd1c4bcd35b2b389755bff4793ad6cba704
parentd4fb7615b5a9c514d48fc78a01c52cb721b889c6
vbo: fix incorrect loop limit in bind_array_obj()

The generic_array[] is 16 elements in size, but the loop was doing 32
iterations.  The out of bounds array write was clobbering the following
inputs[] array but as luck would have it, that didn't matter.
src/mesa/vbo/vbo_exec_array.c