GNU MP invalid version match
| Bug #52849 | GNU MP invalid version match | ||||
|---|---|---|---|---|---|
| Submitted: | 2010-09-15 10:40 UTC | Modified: | 2010-09-15 12:52 UTC | ||
| From: | jariberg at gmail dot com | Assigned: | aharvey (profile) | ||
| Status: | Closed | Package: | GNU MP related | ||
| PHP Version: | 5.3.3 | OS: | All | ||
| Private report: | No | CVE-ID: | None | ||
[2010-09-15 10:40 UTC] jariberg at gmail dot com
Description: ------------ in PHP's ext/gmp/gmp.c file the GNU_MP version match is invalid: The current GNU MP version match only takes into account if the installed GMP version is < 5.0. Original code: __GNU_MP_VERSION >= 4 && __GNU_MP_VERSION_MINOR >= 2 Correct code: (((__GNU_MP_VERSION >= 4) && (__GNU_MP_VERSION_MINOR >= 2)) || (__GNU_MP_VERSION >= 5))
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2010-09-15 10:44 UTC] jariberg at gmail dot com
-Summary: Invalid version match +Summary: GMP extension has invalid version match
[2010-09-15 10:44 UTC] jariberg at gmail dot com
[2010-09-15 10:44 UTC] aharvey@php.net
-Summary: GMP extension has invalid version match +Summary: Invalid version match -Status: Open +Status: Assigned -Assigned To: +Assigned To: aharvey
[2010-09-15 12:52 UTC] aharvey@php.net
-Summary: Invalid version match +Summary: GNU MP invalid version match -Status: Assigned +Status: Closed
[2010-09-15 12:52 UTC] aharvey@php.net