2011-03-10 Michael Snyder <msnyder@vmware.com>
- * p-typeprint.c (pascal_type_print_method_args): Don't use
- pointer until after null-check.
-
* tracepoint.c (cmd_qtv): Discard unused value 'packet'.
(cmd_qtframe): Ditto.
(cmd_qtbuffer): Ditto.
pascal_type_print_method_args (char *physname, char *methodname,
struct ui_file *stream)
{
- fputs_filtered (methodname, stream);
+ int is_constructor = (strncmp (physname, "__ct__", 6) == 0);
+ int is_destructor = (strncmp (physname, "__dt__", 6) == 0);
- if (physname && (*physname != 0))
+ if (is_constructor || is_destructor)
{
- int is_constructor = (strncmp (physname, "__ct__", 6) == 0);
- int is_destructor = (strncmp (physname, "__dt__", 6) == 0);
+ physname += 6;
+ }
- if (is_constructor || is_destructor)
- {
- physname += 6;
- }
+ fputs_filtered (methodname, stream);
+ if (physname && (*physname != 0))
+ {
fputs_filtered (" (", stream);
/* We must demangle this. */
while (isdigit (physname[0]))