This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/4.4 in repository ffmpeg.
commit 7be561cdc39912023001939f394bd275bc5222e9 Author: haoyuLiu <[email protected]> AuthorDate: Sat Jun 6 18:04:25 2026 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Sun Jun 14 01:15:06 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 744c721305..49dd1f44af 100644 --- a/libavfilter/f_zmq.c +++ b/libavfilter/f_zmq.c @@ -154,7 +154,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]
