[gdb] Don't return non-existing path in debuginfod_source_query
authorTom de Vries <tdevries@suse.de>
Mon, 23 Nov 2020 19:09:50 +0000 (20:09 +0100)
committerTom de Vries <tdevries@suse.de>
Mon, 23 Nov 2020 19:09:50 +0000 (20:09 +0100)
commitd6ab69dd5463192c74e9aeb1ab96a35d351d1df3
tree8096c9f234744e535bc36791d70b6fab07452e2d
parentf60742b2a1988d276c77d5c1011143f320d9b4cb
[gdb] Don't return non-existing path in debuginfod_source_query

When setting env var DEBUGINFOD_URLS to " " and running the testsuite, we run
into these regressions:
...
FAIL: gdb.base/list-missing-source.exp: info source
FAIL: gdb.base/source-dir.exp: info source before setting directory search list
...

Setting var DEBUGINFOD_URLS to " " allows the debuginfod query function
debuginfod_source_query to get past its early exit.

The function debuginfod_source_query is documented as: "If the file is
successfully retrieved, its path on the local machine is stored in DESTNAME".

However, in case we get back -ENOENT from libdebuginfod, we still set
DESTNAME:
....
  if (fd.get () < 0 && fd.get () != -ENOENT)
    printf_filtered (_("Download failed: %s.  Continuing without source file %ps.\n"),
                     safe_strerror (-fd.get ()),
                     styled_string (file_name_style.style (),  srcpath));
  else
    *destname = make_unique_xstrdup (srcpath);

  return fd;
...

Fix this by making debuginfod_source_query fit it's documentation and only
setting DESTNAME when successfully retrieving a file.  Likewise in
debuginfod_debuginfo_query.

gdb/ChangeLog:

2020-11-23  Tom de Vries  <tdevries@suse.de>

* debuginfod-support.c (debuginfod_source_query)
(debuginfod_debuginfo_query): Only set DESTNAME if successful.
gdb/ChangeLog
gdb/debuginfod-support.c