Skip to content

Commit e1ab686

Browse files
committed
Avoid uninit warning in dtoa
This code is extremely convoluted, I have no idea whether or not this one is legitimate. Suppressing with explicit initialization.
1 parent 339b0af commit e1ab686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_strtod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3751,7 +3751,7 @@ zend_dtoa
37513751
*/
37523752

37533753
int bbits, b2, b5, be, dig, i, ieps, ilim = 0, ilim0, ilim1,
3754-
j, j1, k, k0, k_check, leftright, m2, m5, s2, s5,
3754+
j, j1 = 0, k, k0, k_check, leftright, m2, m5, s2, s5,
37553755
spec_case = 0, try_quick;
37563756
Long L;
37573757
#ifndef Sudden_Underflow

0 commit comments

Comments
 (0)