From a991b8dec654ad09a35494e0cabbbc157bb04dab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Thu, 3 Feb 2011 12:10:12 +0000 Subject: [PATCH] sapenc: Free AVStream->info on cleanup This fixes yet another memory leak, present since SVN rev 25418. Signed-off-by: Mans Rullgard (cherry picked from commit 1f56f5ed6d68f6492e213944e145e04e4d4dca13) --- libavformat/sapenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/sapenc.c b/libavformat/sapenc.c index b14c511cea..088f7bda01 100644 --- a/libavformat/sapenc.c +++ b/libavformat/sapenc.c @@ -48,6 +48,7 @@ static int sap_write_close(AVFormatContext *s) url_fclose(rtpctx->pb); av_metadata_free(&rtpctx->streams[0]->metadata); av_metadata_free(&rtpctx->metadata); + av_free(rtpctx->streams[0]->info); av_free(rtpctx->streams[0]); av_free(rtpctx); s->streams[i]->priv_data = NULL;