aboutsummaryrefslogtreecommitdiff
path: root/gdb/corelow.c
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2024-06-19 11:12:28 +0100
committerAndrew Burgess <aburgess@redhat.com>2024-06-27 15:15:25 +0100
commit88aad97c21de7a39f8e63467674ef936b3e9a86d (patch)
tree0e16dd7c4311ff0af6108ff717a182b4de618740 /gdb/corelow.c
parent973563710c2f7c184fb6769e1b1d0fc5f3f181f5 (diff)
downloadgdb-88aad97c21de7a39f8e63467674ef936b3e9a86d.zip
gdb-88aad97c21de7a39f8e63467674ef936b3e9a86d.tar.gz
gdb-88aad97c21de7a39f8e63467674ef936b3e9a86d.tar.bz2
gdb: add overloads of gdb_abspath
Add two overloads of gdb_abspath, one which takes std::string and one which takes gdb::unique_xmalloc_ptr<char>, then make use of these overloads throughout GDB and gdbserver. There should be no user visible changes after this commit. Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r--gdb/corelow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c
index 49da9be..2b7a355 100644
--- a/gdb/corelow.c
+++ b/gdb/corelow.c
@@ -626,7 +626,7 @@ core_target_open (const char *arg, int from_tty)
gdb::unique_xmalloc_ptr<char> filename (tilde_expand (arg));
if (strlen (filename.get ()) != 0
&& !IS_ABSOLUTE_PATH (filename.get ()))
- filename = make_unique_xstrdup (gdb_abspath (filename.get ()).c_str ());
+ filename = make_unique_xstrdup (gdb_abspath (filename).c_str ());
flags = O_BINARY | O_LARGEFILE;
if (write_files)