mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
avcodec/huffyuvenc: fail if stats_out is too small instead of silently truncating
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -947,6 +947,8 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
||||
}
|
||||
snprintf(p, end-p, "\n");
|
||||
p++;
|
||||
if (end <= p)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
} else
|
||||
avctx->stats_out[0] = '\0';
|
||||
|
||||
Reference in New Issue
Block a user