1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

This commit is contained in:
David Carlier
2024-11-07 22:52:19 +00:00
2 changed files with 13 additions and 4 deletions

2
NEWS
View File

@@ -28,6 +28,8 @@ PHP NEWS
. Fixed bug GH-16508 (Incorrect line number in inheritance errors of delayed
early bound classes). (ilutov)
. Fixed bug GH-16648 (Use-after-free during array sorting). (ilutov)
. Fixed bug GH-15915 (overflow with a high value for precision INI).
(David Carlier / cmb)
- Curl:
. Fixed bug GH-16302 (CurlMultiHandle holds a reference to CurlHandle if

View File

@@ -3613,13 +3613,20 @@ rv_alloc(i) int i;
rv_alloc(int i)
#endif
{
int k, *r;
size_t j = sizeof(ULong);
int j, k, *r;
size_t rem;
rem = sizeof(Bigint) - sizeof(ULong) - sizeof(int);
j = sizeof(ULong);
if (i > ((INT_MAX >> 2) + rem))
zend_error_noreturn(E_ERROR, "rv_alloc() allocation overflow %d", i);
for(k = 0;
sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= (size_t)i;
j <<= 1)
rem + j <= (size_t)i; j <<= 1)
k++;
r = (int*)Balloc(k);
*r = k;
return