avformat/matroskadec: fix return value

err is already an AVERROR.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2018-02-20 10:26:21 -03:00
parent 88eb368f42
commit f4f39582e7
1 changed files with 1 additions and 1 deletions

View File

@ -3111,7 +3111,7 @@ static int matroska_parse_webvtt(MatroskaDemuxContext *matroska,
err = av_new_packet(pkt, text_len);
if (err < 0) {
av_free(pkt);
return AVERROR(err);
return err;
}
memcpy(pkt->data, text, text_len);