From: Karl Rasche Date: Tue, 9 Dec 2003 19:14:41 +0000 (+0000) Subject: Arg. I can't code.. Test that we don't recongnize '0' as having a leading zero.. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e5ec27845930607ecd3f545b8f0a46aa09b52fd;p=mesa.git Arg. I can't code.. Test that we don't recongnize '0' as having a leading zero.. --- diff --git a/src/mesa/main/arbparse.c b/src/mesa/main/arbparse.c index 25c1d7b7ada..fac0d510f6a 100644 --- a/src/mesa/main/arbparse.c +++ b/src/mesa/main/arbparse.c @@ -2916,7 +2916,7 @@ parse_float (GLubyte ** inst, struct arb_program *Program) * the .). We can have leading 0's here, which parse_integer will ignore, * so we'll check for those first */ - while (**inst == '0') + while ((**inst == '0') && ( *(*inst+1) != 0)) { leading_zeros++; (*inst)++;