aboutsummaryrefslogtreecommitdiff
path: root/libc/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/str.c')
-rw-r--r--libc/str.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/str.c b/libc/str.c
index 2e5f193..b8d4fb1 100644
--- a/libc/str.c
+++ b/libc/str.c
@@ -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;
}