mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
bc11b2c3e6
commit
a301bb63f0
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue