Re: [PHP-DEV] [PATCH] - fix for 64 bit issues with OnUpdateInt
[email protected] ("David Hill")
| Newsgroups | php.dev |
|---|---|
| Message-ID | <018801c2e278$b6bf2bd0$e3008d10@little1> |
> So for 4.3.2, we add the OnUpdateLong() and replace > all the calls to OnUpdateInt() to use that instead > and we leave the OnUpdateInt() behaviour same as it was. > This shouldn't cause BC problems then..? If you want to leave the current OnUpdateInt behavior (uses long * internally) ... then that will require some additional changes, as there are a dozen or so places where an int is currently passed to OnUpdateInt, which I left as is because I changed to using OnUpdateLong where a long was used. Dave