aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-02-27 10:44:00 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-02-27 10:44:00 -0500
commit1c7b145e25e57855b7c3d93828e27e75a4916e8f (patch)
tree6b58378fb188394d2cb190ee2c82ad7a100fa4b7 /gcc
parentb8e605ab2ce097218181cd80c015a40716772bed (diff)
downloadgcc-1c7b145e25e57855b7c3d93828e27e75a4916e8f.zip
gcc-1c7b145e25e57855b7c3d93828e27e75a4916e8f.tar.gz
gcc-1c7b145e25e57855b7c3d93828e27e75a4916e8f.tar.bz2
(readescape): Initialize FIRSTDIG.
From-SVN: r6638
Diffstat (limited to 'gcc')
-rw-r--r--gcc/c-lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index b644d23..63c01de 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1,5 +1,5 @@
/* Lexical analyzer for C and Objective C.
- Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1988, 1989, 1992, 1994 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -892,7 +892,7 @@ readescape (ignore_ptr)
register int c = getc (finput);
register int code;
register unsigned count;
- unsigned firstdig;
+ unsigned firstdig = 0;
int nonnull;
switch (c)