* target-descriptions.c (tdesc_gdb_type): No need to call
xstrdup, callee saves a copy.
2011-03-02 Michael Snyder <msnyder@vmware.com>
+ * target-descriptions.c (tdesc_gdb_type): No need to call
+ xstrdup, callee saves a copy.
+
* printcmd.c (print_scalar_formatted): Use strncpy for safety.
* infcall.c (call_function_by_hand): Add break statements for lint.
struct tdesc_type_flag *f;
int ix;
- type = arch_flags_type (gdbarch, xstrdup (tdesc_type->name),
+ type = arch_flags_type (gdbarch, tdesc_type->name,
tdesc_type->u.f.size);
for (ix = 0;
VEC_iterate (tdesc_type_flag, tdesc_type->u.f.flags, ix, f);