* stabsread.c (read_huge_number): Initialize local variable to 0.

This commit is contained in:
Pedro Alves 2007-10-09 09:05:53 +00:00
parent cd6c7346a6
commit 51e9e0d47b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-10-09 Pedro Alves <pedro_alves@portugalmail.pt>
* stabsread.c (read_huge_number): Initialize local variable to 0.
2007-10-09 Pierre Muller <muller@ics.u-strasbg.fr>
* p-lang.h (pascal_main_name): Add declaration.

View File

@ -3703,7 +3703,7 @@ read_huge_number (char **pp, int end, int *bits, int twos_complement_bits)
{
char *p = *pp;
int sign = 1;
int sign_bit;
int sign_bit = 0;
long n = 0;
int radix = 10;
char overflow = 0;