mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 10:54:07 +08:00
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
This commit is contained in:
parent
ebd4a2097b
commit
ae120683c6
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user