2007-08-28 Michael Snyder <msnyder@access-company.com>
authorMichael Snyder <msnyder@vmware.com>
Tue, 28 Aug 2007 20:34:18 +0000 (20:34 +0000)
committerMichael Snyder <msnyder@vmware.com>
Tue, 28 Aug 2007 20:34:18 +0000 (20:34 +0000)
* mi/mi-cmd-var.c (mi_print_value_p): No longer necessary to
check for null before calling check_typedef.

gdb/ChangeLog
gdb/mi/mi-cmd-var.c

index 413fe40..3b97a5f 100644 (file)
@@ -1,5 +1,8 @@
 2007-08-28  Michael Snyder  <msnyder@access-company.com>
 
+       * mi/mi-cmd-var.c (mi_print_value_p): No longer necessary to 
+       check for null before calling check_typedef.
+
        * NEWS: Mention Coverity bug fixes.
 
 2007-08-27  Markus Deuling  <deuling@de.ibm.com>
index 4fc0c3f..38213e6 100644 (file)
@@ -325,8 +325,7 @@ Must be: 0 or \"%s\", 1 or \"%s\", 2 or \"%s\""),
 static int
 mi_print_value_p (struct type *type, enum print_values print_values)
 {
-  if (type != NULL)
-    type = check_typedef (type);
+  type = check_typedef (type);
 
   if (print_values == PRINT_NO_VALUES)
     return 0;