gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Sun, 17 Oct 2010 08:43:46 +0000 (08:43 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Sun, 17 Oct 2010 08:43:46 +0000 (08:43 +0000)
Fix GCC false warning.
* varobj.c (value_get_print_value) <str_addr>: Initialize it.

gdb/ChangeLog
gdb/varobj.c

index c23a749e4ae3056ef89689e4605e608449e5f947..0e1a8bd88a13b95c391ae469386d641032015406 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix GCC false warning.
+       * varobj.c (value_get_print_value) <str_addr>: Initialize it.
+
 2010-10-16  Pierre Muller  <muller@ics.u-strasbg.fr>
 
        * p-typeprint.c (pascal_type_print_method_args): Fix problem in
index 2eacfa231720648347b847273bda17018607d734..09f91eb669df615baa7530925c080bd1d6c5a05d 100644 (file)
@@ -2486,7 +2486,8 @@ value_get_print_value (struct value *value, enum varobj_display_formats format,
   long len = 0;
   char *encoding = NULL;
   struct gdbarch *gdbarch = NULL;
-  CORE_ADDR str_addr;
+  /* Initialize it just to avoid a GCC false warning.  */
+  CORE_ADDR str_addr = 0;
   int string_print = 0;
 
   if (value == NULL)