diff options
author | Tom Tromey <tromey@redhat.com> | 2011-05-18 16:30:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-05-18 16:30:37 +0000 |
commit | 1d06ead6876712e45010dae36b8e4745fa3321ea (patch) | |
tree | f62b4d275fdbd3b21ba54d5e7185bcf47e644cd4 /gdb/linespec.c | |
parent | 5652e397663c31faf0c1bbc4dc4ba6ef8760ae6d (diff) | |
download | gdb-1d06ead6876712e45010dae36b8e4745fa3321ea.zip gdb-1d06ead6876712e45010dae36b8e4745fa3321ea.tar.gz gdb-1d06ead6876712e45010dae36b8e4745fa3321ea.tar.bz2 |
* value.c (value_fn_field): Constify.
* symtab.c (gdb_mangle_name): Constify.
* stabsread.c (update_method_name_from_physname): Make 'physname'
argument const.
* p-typeprint.c (pascal_type_print_method_args): Make arguments
const. Use explicit fputc_filtered loop.
(pascal_type_print_base): Constify.
* p-lang.h (pascal_type_print_method_args): Update.
* linespec.c (add_matching_methods): Constify.
(add_constructors): Likewise.
* jv-typeprint.c (java_type_print_base): Constify.
* gdbtypes.h (struct cplus_struct_type)
<fn_fieldlist.fn_field.physname>: Now const.
* dwarf2read.c (compute_delayed_physnames): Constify.
(dwarf2_add_member_fn): Likewise.
* c-typeprint.c (c_type_print_base): Constify. Use cleanups.
Diffstat (limited to 'gdb/linespec.c')
-rw-r--r-- | gdb/linespec.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/linespec.c b/gdb/linespec.c index 94bb86f..871d37d 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -312,20 +312,21 @@ add_matching_methods (int method_counter, struct type *t, --field_counter) { struct fn_field *f; - char *phys_name; + const char *phys_name; f = TYPE_FN_FIELDLIST1 (t, method_counter); if (TYPE_FN_FIELD_STUB (f, field_counter)) { - char *tmp_name; + char *tmp_name, *tmp2; tmp_name = gdb_mangle_name (t, method_counter, field_counter); - phys_name = alloca (strlen (tmp_name) + 1); - strcpy (phys_name, tmp_name); + tmp2 = alloca (strlen (tmp_name) + 1); + strcpy (tmp2, tmp_name); xfree (tmp_name); + phys_name = tmp2; } else phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter); @@ -373,7 +374,7 @@ add_constructors (int method_counter, struct type *t, --field_counter) { struct fn_field *f; - char *phys_name; + const char *phys_name; f = TYPE_FN_FIELDLIST1 (t, method_counter); |