forked from Imagelibrary/binutils-gdb
gdb: use make_unique_xstrdup in debuginfod-support.c
Use make_unique_xstrdup instead of reset + xstrdup. gdb/ChangeLog: * debuginfod-support.c (debuginfod_source_query): Use make_unique_xstrdup. Change-Id: Iee9524fea7630b4d6ee5c74e30c60fe222dc1d2c
This commit is contained in:
@@ -121,7 +121,7 @@ debuginfod_source_query (const unsigned char *build_id,
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user