mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
update from main archive 960814
This commit is contained in:
@ -31,8 +31,6 @@ __strdup (const char *s)
|
||||
if (new == NULL)
|
||||
return NULL;
|
||||
|
||||
memcpy (new, s, len);
|
||||
|
||||
return (char *) new;
|
||||
return (char *) memcpy (new, s, len);
|
||||
}
|
||||
weak_alias (__strdup, strdup)
|
||||
|
Reference in New Issue
Block a user