From: Eli Zaretskii Date: Wed, 15 Apr 2009 20:40:51 +0000 (+0000) Subject: * utils.c (parse_escape): Initialize target_char to pacify GCC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27e3013dec60479105b8c69995b41e909e09d252;p=binutils-gdb.git * utils.c (parse_escape): Initialize target_char to pacify GCC. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f721d4a8376..480bf5a8968 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-04-15 Eli Zaretskii + + * utils.c (parse_escape): Initialize target_char to pacify GCC. + 2009-04-14 Jan Kratochvil * c-lang.c (c_get_string): Fix xfree crash on a failed string read. diff --git a/gdb/utils.c b/gdb/utils.c index 53388683889..57f267abfb4 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -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) {