* mi/mi-cmd-var.c (mi_print_value_p): No longer necessary to
check for null before calling check_typedef.
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>
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;