mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
gdb: call gdb_tilde_expand instead of gdb_tilde_expand_up in source_script_with_search
This removes a use of gdb_tilde_expand_up, which is removed later in this series. Change-Id: I5887d526cea987103e4ca24514a982b0a28e992a
This commit is contained in:
@ -749,13 +749,13 @@ source_script_with_search (const char *file, int from_tty, int search_path)
|
|||||||
this if we (may have) used search_path, as printing the full path in
|
this if we (may have) used search_path, as printing the full path in
|
||||||
errors for the non-search case can be more noise than signal. */
|
errors for the non-search case can be more noise than signal. */
|
||||||
const char *file_to_open;
|
const char *file_to_open;
|
||||||
gdb::unique_xmalloc_ptr<char> tilde_expanded_file;
|
std::string tilde_expanded_file;
|
||||||
if (search_path)
|
if (search_path)
|
||||||
file_to_open = opened->full_path.get ();
|
file_to_open = opened->full_path.get ();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tilde_expanded_file = gdb_tilde_expand_up (file);
|
tilde_expanded_file = gdb_tilde_expand (file);
|
||||||
file_to_open = tilde_expanded_file.get ();
|
file_to_open = tilde_expanded_file.c_str ();
|
||||||
}
|
}
|
||||||
source_script_from_stream (opened->stream.get (), file, file_to_open);
|
source_script_from_stream (opened->stream.get (), file, file_to_open);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user