aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-02-17 23:24:17 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-02-22 01:45:31 +0100
commitb8a00a1f73331af031cbb8d718d6439522896a3f (patch)
treebf80d7607e99d04952f5597124bc16ce77f5bb26
parentfe08058f24ca61b277548b5b7aa272b925c90ae9 (diff)
downloadffmpeg-b8a00a1f73331af031cbb8d718d6439522896a3f.tar.gz
avcodec/assenc: Use size_t for length of string
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/assenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/assenc.c b/libavcodec/assenc.c
index e548b9fd3b..e734522729 100644
--- a/libavcodec/assenc.c
+++ b/libavcodec/assenc.c
@@ -45,7 +45,7 @@ static int ass_encode_frame(AVCodecContext *avctx,
unsigned char *buf, int bufsize,
const AVSubtitle *sub)
{
- int len;
+ size_t len;
if (sub->num_rects != 1) {
av_log(avctx, AV_LOG_ERROR, "Only one rect per AVSubtitle is supported in ASS.\n");
@@ -59,7 +59,7 @@ static int ass_encode_frame(AVCodecContext *avctx,
len = av_strlcpy(buf, sub->rects[0]->ass, bufsize);
- if (len > bufsize - 1) {
+ if (len >= bufsize) {
av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
return AVERROR_BUFFER_TOO_SMALL;
}