[PATCH] Small typo in zend_u_strtol

php.internals

Matt W

19 years ago
Hi, Noticed this a couple months ago and never sent this simple thing. :-) ERANGE is being triggered too soon because of the wrong variable, which causes the following (in Unicode mode, of course) on 32-bit: (int) '2147483640' // int(2147483647) '2147483640' + 0) // float(2147483640) Instead of the expected int(2147483640) in both cases. Matt

Matt W

19 years ago
Hi, Was this missed? I'm sure you want to fix it. :-) Maybe should've put "bug" instead of "typo" in the subject... Just also sending to you Andrei since it's Unicode related. Patch was an attachment: http://news.php.net/php.internals/25820 ----- Original Message ----- From: "Matt W" Sent: Monday, September 25, 2006

Andrei Zmievski

19 years ago
Are you sure this is correct? I copied the source from BSD strtol implementation. http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libc/stdlib/strtol.c? rev=1.19&content-type=text/x-cvsweb-markup -Andrei On Oct 5, 2006, at 1:50 AM, Matt W wrote:

Matt W

19 years ago
Hi Andrei, ----- Original Message ----- From: "Andrei Zmievski" Sent: Thursday, October 05, 2006
> Are you sure this is correct? I copied the source from BSD strtol > implementation. > > http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libc/stdlib/strtol.c? > rev=1.19&content-type=text/x-cvsweb-markup
Well, copied but modified for Unicode use... like half the for loop is changed. In BSD's case, the value of '0', etc. is subtracted from "c" variable, so it then has the actual numeric value of the digit. But PHP's puts the actual numeric value in "val" from u_digit(). "c" is still too high by '0' 's value (48?). Finally, their "acc += c" was changed to "acc += val" for that reason. If PHP's had kept "c" *there*, the problem would've been discovered fast. :-) Do you see the problem in the examples I gave? Numbers between 2147483640 and 2147483647 incorrectly set ERANGE, along with similar negative values.
> -Andrei
Matt