summaryrefslogtreecommitdiff
path: root/lib/libc/string/wcslcat.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-05-16 14:34:47 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-05-16 14:34:47 +0000
commit9d3618b99999a5d2d1ea3f608025fceaa7e19f6e (patch)
tree6a9a82c28395e8bc55692f8f338e03ac291ddcb0 /lib/libc/string/wcslcat.c
parentbfd122084264087c2eba6397857476b4dfb6a5e1 (diff)
Notes
Diffstat (limited to 'lib/libc/string/wcslcat.c')
-rw-r--r--lib/libc/string/wcslcat.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c
index d6c669a56d7f..3145eaf91afe 100644
--- a/lib/libc/string/wcslcat.c
+++ b/lib/libc/string/wcslcat.c
@@ -57,9 +57,6 @@ wcslcat(dst, src, siz)
size_t n = siz;
size_t dlen;
- _DIAGASSERT(dst != NULL);
- _DIAGASSERT(src != NULL);
-
/* Find the end of dst and adjust bytes left but don't go past end */
while (*d != '\0' && n-- != 0)
d++;