diff options
author | Tom Tromey <tom@tromey.com> | 2021-06-04 16:00:33 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-11-05 13:58:48 -0600 |
commit | be77dd73c769b3e7ac62bd4c0b98242b62d080e0 (patch) | |
tree | 42467dc2ff4b18810660886835c51503b6ffacb7 /gdb/parse.c | |
parent | 8a89ddbda2ecb41be0f12142e5d4b95c7bd5a138 (diff) | |
download | binutils-be77dd73c769b3e7ac62bd4c0b98242b62d080e0.zip binutils-be77dd73c769b3e7ac62bd4c0b98242b62d080e0.tar.gz binutils-be77dd73c769b3e7ac62bd4c0b98242b62d080e0.tar.bz2 |
Introduce make_unique_xstrndup
This adds a new make_unique_xstrndup function, which is the "n"
analogue of make_unique_xstrdup. It also updates a couple existing
places to use this function.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index b2f23eb..a76a6c1 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -199,7 +199,8 @@ parser_state::mark_completion_tag (enum type_code tag, const char *ptr, || tag == TYPE_CODE_STRUCT || tag == TYPE_CODE_ENUM); m_completion_state.expout_tag_completion_type = tag; - m_completion_state.expout_completion_name.reset (xstrndup (ptr, length)); + m_completion_state.expout_completion_name + = make_unique_xstrndup (ptr, length); } /* See parser-defs.h. */ |