diff options
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/source.c b/gdb/source.c index e2a507d..0453f92 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -911,7 +911,7 @@ done: if (fd < 0) *filename_opened = NULL; else if ((opts & OPF_RETURN_REALPATH) != 0) - *filename_opened = gdb_realpath (filename); + *filename_opened = gdb_realpath (filename).release (); else *filename_opened = gdb_abspath (filename).release (); } @@ -1050,7 +1050,7 @@ find_and_open_source (const char *filename, result = gdb_open_cloexec (*fullname, OPEN_MODE, 0); if (result >= 0) { - char *lpath = gdb_realpath (*fullname); + char *lpath = gdb_realpath (*fullname).release (); xfree (*fullname); *fullname = lpath; |