This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.0 in repository ffmpeg.
commit ecb65b1094ba9ae0c8e8575eaf4a7431f8a6f7a1 Author: haoyuLiu <[email protected]> AuthorDate: Sat Jun 6 18:04:25 2026 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Sun Jun 14 04:59:11 2026 +0200 avfilter/zmq: initialize send_buf before shared cleanup on parse failure Found-by: VulnForge Security Research Team Reported-by: Cloud-LHY <[email protected]> (cherry picked from commit 6028720d70d0f50512c66df43f7c9e05d6797463) Signed-off-by: Michael Niedermayer <[email protected]> --- libavfilter/f_zmq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/f_zmq.c b/libavfilter/f_zmq.c index 253e1d9cc0..647ee37963 100644 --- a/libavfilter/f_zmq.c +++ b/libavfilter/f_zmq.c @@ -156,7 +156,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *ref) while (1) { char cmd_buf[1024]; - char *recv_buf, *send_buf; + char *recv_buf = NULL, *send_buf = NULL; int recv_buf_size; Command cmd = {0}; int ret; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
