dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and spec_case.
2005-03-05 Andreas Tobler <a.tobler@schweiz.ch> * java/lang/dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and spec_case. Initialize pointer mlo. * java/lang/strtod.c (_strtod_r): Initialize pointers bb, bd, ds and delta. * java/lang/e_asin.c (__ieee754_asin): Initialize variable t. * java/lang/e_exp.c (__ieee754_exp): Initialize variables hi, lo and k. * java/lang/e_rem_pio2.c (__ieee754_rem_pio2): Initialize uninitialized variable z. * gnu/java/net/natPlainDatagramSocketImplPosix.cc (mcastGrp): Ifdef possible unused variables. * gnu/java/nio/natPipeImplPosix.cc (init): Remove self. * jawt.c: Include <stdlib.h> to fix implict declaration of malloc. From-SVN: r95925
This commit is contained in:
parent
537a2904e7
commit
2fdedf0462
9 changed files with 41 additions and 13 deletions
|
@ -118,7 +118,7 @@ _DEFUN (_strtod_r, (ptr, s00, se),
|
|||
unsigned long y, z;
|
||||
union double_union rv, rv0;
|
||||
|
||||
_Jv_Bigint *bb, *bb1, *bd, *bd0, *bs, *delta;
|
||||
_Jv_Bigint *bb = NULL, *bb1, *bd = NULL, *bd0, *bs = NULL, *delta = NULL;
|
||||
sign = nz0 = nz = 0;
|
||||
rv.d = 0.;
|
||||
for (s = s00;; s++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue