aboutsummaryrefslogtreecommitdiff
path: root/gdb/go-lang.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2021-10-04 08:44:22 -0600
committerTom Tromey <tromey@adacore.com>2021-10-04 13:45:38 -0600
commit3456e70c9d69da8d62a0ea1f8c2e643648afc654 (patch)
tree7959a8dc460685d2e8e3197478eddb4430d48708 /gdb/go-lang.h
parente133de4984cef9acb32fd756c607aa2fa1d090fb (diff)
downloadfsf-binutils-gdb-3456e70c9d69da8d62a0ea1f8c2e643648afc654.zip
fsf-binutils-gdb-3456e70c9d69da8d62a0ea1f8c2e643648afc654.tar.gz
fsf-binutils-gdb-3456e70c9d69da8d62a0ea1f8c2e643648afc654.tar.bz2
Use unique_xmalloc_ptr<char> when demangling
I noticed that some methods in language_defn could use unique_xmalloc_ptr<char> rather than a plain 'char *'. This patch implements this change, fixing up the fallout and changing gdb_demangle to also return this type. In one spot, std::string is used to simplify some related code, and in another, an auto_obstack is used to avoid manual management. Regression tested on x86-64 Fedora 34.
Diffstat (limited to 'gdb/go-lang.h')
-rw-r--r--gdb/go-lang.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/go-lang.h b/gdb/go-lang.h
index 3495d98..3a726e7 100644
--- a/gdb/go-lang.h
+++ b/gdb/go-lang.h
@@ -94,8 +94,9 @@ public:
/* See language.h. */
- bool sniff_from_mangled_name (const char *mangled,
- char **demangled) const override
+ bool sniff_from_mangled_name
+ (const char *mangled, gdb::unique_xmalloc_ptr<char> *demangled)
+ const override
{
*demangled = demangle_symbol (mangled, 0);
return *demangled != NULL;
@@ -103,7 +104,8 @@ public:
/* See language.h. */
- char *demangle_symbol (const char *mangled, int options) const override;
+ gdb::unique_xmalloc_ptr<char> demangle_symbol (const char *mangled,
+ int options) const override;
/* See language.h. */