mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 10:51:38 +00:00
avformat/matroskadec: fix return value
err is already an AVERROR. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
88eb368f42
commit
f4f39582e7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user