diff options
author | Ulrich Drepper <drepper@redhat.com> | 1996-08-15 01:23:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1996-08-15 01:23:29 +0000 |
commit | 706074a5bb120f78f4fd8bc40c6814f14e17e530 (patch) | |
tree | c5da6add27af818bf38e5d9e4f9b3c2dedc718ff /string | |
parent | 046e3001f9370904c1efd764cfe49c472818ddfb (diff) | |
download | glibc-706074a5bb120f78f4fd8bc40c6814f14e17e530.tar.gz |
update from main archive 960814cvs/libc-960815
Diffstat (limited to 'string')
-rw-r--r-- | string/strdup.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/string/strdup.c b/string/strdup.c index 3e9eee0945..ef883eecdd 100644 --- a/string/strdup.c +++ b/string/strdup.c @@ -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) |