diff options
author | Tom Tromey <tom@tromey.com> | 2018-02-15 22:41:03 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-02-21 09:09:45 -0700 |
commit | 3eac2b654808f9e233885f910045eea9d2ca0aa0 (patch) | |
tree | 22d3276e46df79ab5506979101b94ee6ecdfb12e /gdb/eval.c | |
parent | 6ccb583f751e020a6db768d517c2dd3ba6d93cc4 (diff) | |
download | gdb-3eac2b654808f9e233885f910045eea9d2ca0aa0.zip gdb-3eac2b654808f9e233885f910045eea9d2ca0aa0.tar.gz gdb-3eac2b654808f9e233885f910045eea9d2ca0aa0.tar.bz2 |
Remove a cleanup from parse_expression_for_completion
This removes a cleanup from parse_expression_for_completion, by
changing various expression-completion functions to use
gdb::unique_xmalloc_ptry rather than explicit malloc+free.
Regression tested by the buildbot.
gdb/ChangeLog
2018-02-21 Tom Tromey <tom@tromey.com>
* value.h: (extract_field_op): Update.
* eval.c (extract_field_op): Return a const char *.
* expression.h (parse_expression_for_completion): Update.
* completer.c (complete_expression): Update.
(add_struct_fields): Make fieldname const.
* parse.c (expout_completion_name): Now a unique_xmalloc_ptr.
(mark_completion_tag, parse_exp_in_context_1): Update.
(parse_expression_for_completion): Change "name" to
unique_xmalloc_ptr*.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r-- | gdb/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ fetch_subexp_value (struct expression *exp, int *pc, struct value **valp, subexpression of the left-hand-side of the dereference. This is used when completing field names. */ -char * +const char * extract_field_op (struct expression *exp, int *subexp) { int tem; |