aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-01-05 19:55:21 +0000
committerMike Frysinger <vapier@gcc.gnu.org>2016-01-05 19:55:21 +0000
commitae120683c6a300fecd8b82ef2451faec3932688e (patch)
treeeff165c07f714a1fe61c3b1f1e177ee494c3fb84
parentebd4a2097b72494b3ff64e5ecfe32a7f520714db (diff)
downloadgcc-ae120683c6a300fecd8b82ef2451faec3932688e.zip
gcc-ae120683c6a300fecd8b82ef2451faec3932688e.tar.gz
gcc-ae120683c6a300fecd8b82ef2451faec3932688e.tar.bz2
libiberty: dupargv: rewrite to use xstrdup
This func is basically open coding the xstrdup function, so gut it and use that directly. From-SVN: r232086
-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 6073c5b..3cc90d1 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 f2727e8..5c3dd70 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;
}