OSDN Git Service

* utils.c (parse_escape): Initialize target_char to pacify GCC.
authoreliz <eliz>
Wed, 15 Apr 2009 20:40:51 +0000 (20:40 +0000)
committereliz <eliz>
Wed, 15 Apr 2009 20:40:51 +0000 (20:40 +0000)
gdb/ChangeLog
gdb/utils.c

index f721d4a..480bf5a 100644 (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.
index 5338868..57f267a 100644 (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)
     {