diff options
Diffstat (limited to 'libc/str.c')
-rw-r--r-- | libc/str.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -119,8 +119,7 @@ char *strdup(const char *s) int l = strlen(s) + 1; char *d = malloc(l); - if (d) - memcpy(d, s, l); + memcpy(d, s, l); return d; } |