1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Replaced the call to strdup() with a new operator followed by a strcpy().

This should prevent calls to the new oerator and malloc.

llvm-svn: 8587
This commit is contained in:
John Criswell 2003-09-17 19:14:41 +00:00
parent b0eb351d77
commit d3b8e07a98

View File

@ -382,7 +382,8 @@ copy_env (char ** const envp)
entries = 0;
while (envp[entries] != NULL)
{
newenv[entries] = strdup (envp[entries]);
newenv[entries] = new char[strlen (envp[entries]) + 1];
strcpy (newenv[entries], envp[entries]);
++entries;
}
newenv[entries] = NULL;