Changeset 2913 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Dec 3, 2002, 3:20:52 PM (22 years ago)
Author:
mjs
Message:

Reviewed by: Darin Adler

  • fixed Deployment build.
  • kjs/dtoa.cpp: Work around warnings.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/dtoa.cpp

    r2912 r2913  
    15451545        Long L;
    15461546        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;
    15481548#ifdef SET_INEXACT
    15491549        int inexact, oldinexact;
     
    26782678        */
    26792679
    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,
    26812681                j, j1, k, k0, k_check, leftright, m2, m5, s2, s5,
    26822682                spec_case, try_quick;
     
    26862686        ULong x;
    26872687#endif
    2688         Bigint *b, *b1, *delta, *mlo, *mhi, *S;
     2688        Bigint *b, *b1, *delta, *mlo = NULL, *mhi, *S;
    26892689        double d2, ds, eps;
    26902690        char *s, *s0;
Note: See TracChangeset for help on using the changeset viewer.