Use make_unique_xstrdup instead of reset + xstrdup.
gdb/ChangeLog:
* debuginfod-support.c (debuginfod_source_query): Use
make_unique_xstrdup.
Change-Id: Iee9524fea7630b4d6ee5c74e30c60fe222dc1d2c
+2020-09-14 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * debuginfod-support.c (debuginfod_source_query): Use
+ make_unique_xstrdup.
+
2020-09-14 Simon Marchi <simon.marchi@efficios.com>
* gdbtypes.h (TYPE_INSTANCE_FLAGS): Remove, replace all uses
safe_strerror (-fd.get ()),
styled_string (file_name_style.style (), srcpath));
else
- destname->reset (xstrdup (srcpath));
+ *destname = make_unique_xstrdup (srcpath);
debuginfod_end (c);
return fd;