summaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-01-03 01:29:03 -0500
committerMike Frysinger <vapier@gentoo.org>2016-01-05 15:02:57 -0500
commit203217665139943a4f0d1797b9a5f913b3acf184 (patch)
treef863ffb232c8ce009c1dc589e7d164ced87b20c4 /libiberty
parent4bec0ef03e91506caf60d8842786b29c2d2ff049 (diff)
libiberty: dupargv: rewrite to use xstrdup
This func is basically open coding the xstrdup function, so gut it and use it directly.
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/argv.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index aa598f277b..ba1e0a51c3 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+2016-01-05 Mike Frysinger <vapier@gentoo.org>
+
+ * argv.c (dupargv): Replace strlen/xmalloc/strcpy with xstrdup.
+
2015-12-28 Patrick Palka <ppalka@gcc.gnu.org>
* crc32.c: In the documentation, don't refer to GDB's
diff --git a/libiberty/argv.c b/libiberty/argv.c
index f2727e8de9..5c3dd70b04 100644
--- a/libiberty/argv.c
+++ b/libiberty/argv.c
@@ -76,11 +76,7 @@ dupargv (char **argv)
/* the strings */
for (argc = 0; argv[argc] != NULL; argc++)
- {
- int len = strlen (argv[argc]);
- copy[argc] = (char *) xmalloc (len + 1);
- strcpy (copy[argc], argv[argc]);
- }
+ copy[argc] = xstrdup (argv[argc]);
copy[argc] = NULL;
return copy;
}