OSDN Git Service

glcpp: Fix post-decrement underflow in loop-control variable
authorCarl Worth <cworth@cworth.org>
Mon, 3 Jun 2013 18:35:43 +0000 (11:35 -0700)
committerCarl Worth <cworth@cworth.org>
Mon, 3 Jun 2013 20:33:31 +0000 (13:33 -0700)
commitd8eeb1d330c52aad734cc553e41b457e6727275c
tree625c48ea494d8d2996531558c59775a962d9e394
parent7a9f4d3e7114ca709658a620644ad897bdda41e7
glcpp: Fix post-decrement underflow in loop-control variable

This loop-control condition with a post-decrement operator would lead to
an underflow of collapsed_newlines. This in turn would cause a subsequent
execution of the loop to labor inordinately trying to return the loop-control
variable to a value of 0 again.

Fix this by dis-intertwining the test and the decrement.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65112

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/glsl/glcpp/pp.c