From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 453CE4D8CB for ; Wed, 2 Jul 2025 16:57:48 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 1EA8268D2FD; Wed, 2 Jul 2025 19:57:15 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id C8D2568D1C5 for ; Wed, 2 Jul 2025 19:57:05 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 30ABA27FFCD32; Wed, 02 Jul 2025 18:57:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1751475425; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XFu9nUKC+0hV6BjoIqprOxcmzmMt548ejqp/EVw8IeY=; b=efj9gg8+7PMeZSOeXRC952rBVHSe+a/2eaaz9GbGUjXc7TwmT0vmOR3yuJKFfInY0Ox7s5 WIli+NGzOlW+3NfGYRZWaGCoEDL8AxPSdxBJdKrqVoCg57h1v0CggA+Z3dmbxXPKkhbHLe wEFH5nLGnrobe5W9kRMf95ddjDZFOpD+I9hWXcQCJ/1Ml1jGJwIyQTDC9DPAcyL0FWLHvi 4dfeCaBu4XIfCCEveZwvZpHoYQaF+KY3xEZj7R46ZdR7rfGWVTx9T+O/XdU4I3EqPBLZPl T6d/95wCqBye9cbzXV151JRDihCvaOk6k7uc7ftwClaC/awBg+fnIw6SEBpDUw== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 2 Jul 2025 18:56:31 +0200 Message-ID: <20250702165655.1325-4-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250702165655.1325-1-timo@rothenpieler.org> References: <20250702165655.1325-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 03/18] avformat/whip: don't leak options dict X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavformat/whip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/whip.c b/libavformat/whip.c index a6cdccc21c..a1cf8aff1b 100644 --- a/libavformat/whip.c +++ b/libavformat/whip.c @@ -1303,6 +1303,7 @@ next_packet: /* If got the first binding response, start DTLS handshake. */ ret = ffurl_open_whitelist(&whip->dtls_uc, buf, AVIO_FLAG_READ_WRITE, &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL); + av_dict_free(&opts); if (ret < 0) goto end; dtls_initialize(s); -- 2.49.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".