aboutsummaryrefslogtreecommitdiff
path: root/picohttp.c
diff options
context:
space:
mode:
Diffstat (limited to 'picohttp.c')
-rw-r--r--picohttp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/picohttp.c b/picohttp.c
index d813a3e..bfce031 100644
--- a/picohttp.c
+++ b/picohttp.c
@@ -826,7 +826,10 @@ static void picohttpProcessHeaderAuthorization(
/* invalid chunk => abort the whole header */
return;
}
- for(size_t j=0; j < l && i < user_password_max_len; j++, i++) {
+ for(size_t j=0;
+ j < l
+ && i < user_password_max_len;
+ j++, i++) {
user_password[i] = r[j];
}
}