mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/webvttenc: Fix use of uninitialized variable
Happened in 9168a1c0e6
.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d393c45051
commit
44c8b67502
@ -87,7 +87,7 @@ static int webvtt_write_packet(AVFormatContext *ctx, AVPacket *pkt)
|
||||
settings = av_packet_get_side_data(pkt, AV_PKT_DATA_WEBVTT_SETTINGS,
|
||||
&settings_size);
|
||||
|
||||
if (settings_size_int > INT_MAX)
|
||||
if (settings_size > INT_MAX)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
settings_size_int = settings_size;
|
||||
|
Loading…
Reference in New Issue
Block a user