This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 6028720d70 avfilter/zmq: initialize send_buf before shared cleanup on 
parse failure
6028720d70 is described below

commit 6028720d70d0f50512c66df43f7c9e05d6797463
Author:     haoyuLiu <[email protected]>
AuthorDate: Sat Jun 6 18:04:25 2026 +0200
Commit:     michaelni <[email protected]>
CommitDate: Mon Jun 8 02:20:53 2026 +0000

    avfilter/zmq: initialize send_buf before shared cleanup on parse failure
    
    Found-by: VulnForge Security Research Team
    Reported-by: Cloud-LHY <[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]

Reply via email to