Fix multipart parser blocking FP with Safari (

(#317).
This commit is contained in:
ivanr 2007-10-15 17:27:51 +00:00
parent 793b576701
commit d5f3b9ce52

View File

@ -622,8 +622,11 @@ static int multipart_count_boundary_params(apr_pool_t *mp, const char *header_va
s = duplicate;
while((s = strstr(s, "boundary")) != NULL) {
count++;
s += 8;
if (strchr(s, "=") != NULL) {
count++;
}
}
return count;