Changeset 2913 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Dec 3, 2002, 3:20:52 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/dtoa.cpp
r2912 r2913 1545 1545 Long L; 1546 1546 ULong y, z; 1547 Bigint *bb , *bb1, *bd, *bd0, *bs, *delta;1547 Bigint *bb = NULL, *bb1 = NULL, *bd = NULL, *bd0 = NULL, *bs = NULL, *delta = NULL; 1548 1548 #ifdef SET_INEXACT 1549 1549 int inexact, oldinexact; … … 2678 2678 */ 2679 2679 2680 int bbits, b2, b5, be, dig, i, ieps, ilim , ilim0, ilim1,2680 int bbits, b2, b5, be, dig, i, ieps, ilim = 0, ilim0, ilim1 = 0, 2681 2681 j, j1, k, k0, k_check, leftright, m2, m5, s2, s5, 2682 2682 spec_case, try_quick; … … 2686 2686 ULong x; 2687 2687 #endif 2688 Bigint *b, *b1, *delta, *mlo , *mhi, *S;2688 Bigint *b, *b1, *delta, *mlo = NULL, *mhi, *S; 2689 2689 double d2, ds, eps; 2690 2690 char *s, *s0;
Note:
See TracChangeset
for help on using the changeset viewer.