mpjpeg: CRLF terminating a sequence of MIME headers should not cause an error

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Alex Agranovsky 2015-09-12 19:04:26 -04:00 committed by Michael Niedermayer
parent 01770bfda0
commit 53e8bef25a
1 changed files with 13 additions and 2 deletions

View File

@ -56,11 +56,20 @@ static void trim_right(char* p)
static int split_tag_value(char **tag, char **value, char *line)
{
char *p = line;
int foundData = 0;
while (*p != '\0' && *p != ':')
*tag = NULL;
*value = NULL;
while (*p != '\0' && *p != ':') {
if (!av_isspace(*p)) {
foundData = 1;
}
p++;
}
if (*p != ':')
return AVERROR_INVALIDDATA;
return foundData ? AVERROR_INVALIDDATA : 0;
*p = '\0';
*tag = line;
@ -167,6 +176,8 @@ static int parse_multipart_header(AVIOContext *pb, void *log_ctx)
ret = split_tag_value(&tag, &value, line);
if (ret < 0)
return ret;
if (value==NULL || tag==NULL)
break;
if (!av_strcasecmp(tag, "Content-type")) {
if (av_strcasecmp(value, "image/jpeg")) {