Fix blocking multipart FP, which affected Safari.

This commit is contained in:
ivanr
2007-10-15 18:05:12 +00:00
parent bd67485b66
commit 5cc5a608b9
2 changed files with 7 additions and 1 deletions

View File

@@ -603,8 +603,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;