mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02: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