summaryrefslogtreecommitdiff
path: root/kernel/libc/string/strlcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/libc/string/strlcpy.c')
-rw-r--r--kernel/libc/string/strlcpy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/libc/string/strlcpy.c b/kernel/libc/string/strlcpy.c
index 43d0e58..1338699 100644
--- a/kernel/libc/string/strlcpy.c
+++ b/kernel/libc/string/strlcpy.c
@@ -8,12 +8,14 @@ size_t strlcpy(char *dst, const char *src, size_t dsize) {
size_t n = dsize;
const char *osrc = src;
for (; n; n--) {
- if ((*dst++ = *src++) == '\0')
+ if ((*dst++ = *src++) == '\0') {
break;
+ }
}
if (n == 0) {
- if (dsize != 0)
+ if (dsize != 0) {
*dst = '\0'; /* NUL-terminate dst */
+ }
while (*src++)
;
}