We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c746c9 commit 3b972ecCopy full SHA for 3b972ec
Zend/zend_strtod.c
@@ -3613,11 +3613,11 @@ rv_alloc(i) int i;
3613
rv_alloc(int i)
3614
#endif
3615
{
3616
- int j, k, *r;
+ int k, *r;
3617
3618
- j = sizeof(ULong);
+ size_t j = sizeof(ULong);
3619
for(k = 0;
3620
- sizeof(Bigint) - sizeof(ULong) - sizeof(int) + (size_t)j <= (size_t)i;
+ sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= (size_t)i;
3621
j <<= 1)
3622
k++;
3623
r = (int*)Balloc(k);
0 commit comments