Fix Content-Type header parsing

svn path=/trunk/netsurf/; revision=10426
This commit is contained in:
John Mark Bell 2010-04-18 11:14:56 +00:00
parent 3958f3730b
commit f81ea3419e
1 changed files with 0 additions and 5 deletions

View File

@ -312,11 +312,6 @@ nserror http_parse_content_type(const char *header_value, char **media_type,
pos++;
if (*pos == ';') {
pos++;
while (*pos == ' ' || *pos == '\t')
pos++;
error = http_parse_parameter_list(&pos, &params);
if (error != NSERROR_OK) {
free(subtype);