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

Git pushed a commit to branch master
in repository ffmpeg.

commit b934dd1d4b3b2afcd42c2694f0d887a88af33646
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Fri Dec 19 08:38:03 2025 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Fri Dec 19 21:45:24 2025 +0100

    avformat/whip: Fix leak of dtls_fingerprint
    
    Reviewed-by: Steven Liu <[email protected]>
    Reviewed-by: Jack Lau <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavformat/whip.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/whip.c b/libavformat/whip.c
index 1093b8583e..136cf1408b 100644
--- a/libavformat/whip.c
+++ b/libavformat/whip.c
@@ -1982,6 +1982,7 @@ static av_cold void whip_deinit(AVFormatContext *s)
     ff_srtp_free(&whip->srtp_recv);
     ffurl_close(whip->dtls_uc);
     ffurl_closep(&whip->udp);
+    av_freep(&whip->dtls_fingerprint);
 }
 
 static int whip_check_bitstream(AVFormatContext *s, AVStream *st, const 
AVPacket *pkt)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to