Arg. I can't code.. Test that we don't recongnize '0' as having a leading zero..
authorKarl Rasche <karlrasche@gmail.com>
Tue, 9 Dec 2003 19:14:41 +0000 (19:14 +0000)
committerKarl Rasche <karlrasche@gmail.com>
Tue, 9 Dec 2003 19:14:41 +0000 (19:14 +0000)
src/mesa/main/arbparse.c

index 25c1d7b..fac0d51 100644 (file)
@@ -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)++;