* utils.c (parse_escape): Initialize target_char to pacify GCC.

This commit is contained in:
Eli Zaretskii 2009-04-15 20:40:51 +00:00
parent 82b5c97a79
commit 27e3013dec
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-04-15 Eli Zaretskii <eliz@gnu.org>
* utils.c (parse_escape): Initialize target_char to pacify GCC.
2009-04-14 Jan Kratochvil <jan.kratochvil@redhat.com>
* c-lang.c (c_get_string): Fix xfree crash on a failed string read.

View File

@ -1618,7 +1618,7 @@ host_char_to_target (int c, int *target_c)
int
parse_escape (char **string_ptr)
{
int target_char;
int target_char = -2; /* initialize to avoid GCC warnings */
int c = *(*string_ptr)++;
switch (c)
{