[FFmpeg-devel] [PATCH] avformat/mov: prevent excessive allocation in mov_read_udta_string

2025-08-01 Thread Sanjay Jangid
Signed-off-by: Sanjay Jangid --- libavformat/mov.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index c935bbf..725a9fa 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -459,6 +459,10 @@ retry: data_type = avio_rb32(pb); // type

[FFmpeg-devel] [PATCH] avformat/mov: prevent excessive allocation in mov_read_udta_string

2025-07-30 Thread Sanjay Jangid
Signed-off-by: Sanjay Jangid --- libavformat/mov.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index c935bbf..725a9fa 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -459,6 +459,10 @@ retry: data_type = avio_rb32(pb); // type

[FFmpeg-devel] [PATCH] avfilter/drawtext: replace strcpy/strcat with av_strlcpy/av_strlcat

2025-07-29 Thread Sanjay Jangid
Signed-off-by: Sanjay Jangid --- libavfilter/vf_drawtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index aae703b..5cd8633 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -1880,7 +1880,7

[FFmpeg-devel] [PATCH] avfilter/drawtext: replace strcpy/strcat with av_strlcpy/av_strlcat

2025-07-29 Thread Sanjay Jangid
Signed-off-by: Sanjay Jangid --- libavfilter/vf_drawtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index aae703b..5cd8633 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -1880,7 +1880,7