mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Fix blocking multipart FP, which affected Safari.
This commit is contained in:
parent
d5f3b9ce52
commit
b0d514478f
@ -624,7 +624,7 @@ static int multipart_count_boundary_params(apr_pool_t *mp, const char *header_va
|
||||
while((s = strstr(s, "boundary")) != NULL) {
|
||||
s += 8;
|
||||
|
||||
if (strchr(s, "=") != NULL) {
|
||||
if (strchr(s, '=') != NULL) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user