Browse Source

2007-08-14 Michael Snyder <msnyder@access-company.com>

* varobj.c (cplus_describe_child): Guard against null.
	Use "NULL" instead of "0" to initialize pointers.
gdb_6_7-branch
Michael Snyder 19 years ago
parent
commit
348144bad4
  1. 5
      gdb/ChangeLog
  2. 7
      gdb/varobj.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2007-08-14 Michael Snyder <msnyder@access-company.com>
* varobj.c (cplus_describe_child): Guard against null.
Use "NULL" instead of "0" to initialize pointers.
2007-08-14 Daniel Jacobowitz <dan@codesourcery.com>
* arm-tdep.c (arm_gdbarch_init): Allow unknown ABI and FPU settings

7
gdb/varobj.c

@ -2315,7 +2315,7 @@ static void
cplus_describe_child (struct varobj *parent, int index,
char **cname, struct value **cvalue, struct type **ctype)
{
char *name = 0;
char *name = NULL;
struct value *value;
struct type *type;
@ -2396,7 +2396,7 @@ cplus_describe_child (struct varobj *parent, int index,
}
else
{
char *access = 0;
char *access = NULL;
int children[3];
cplus_class_num_children (type, children);
@ -2435,7 +2435,8 @@ cplus_describe_child (struct varobj *parent, int index,
/* error! */
break;
}
gdb_assert (access);
if (cname)
*cname = xstrdup (access);

Loading…
Cancel
Save