From fb0c46e5af65758c93de3ee7766f51b31c489210 Mon Sep 17 00:00:00 2001 From: mangshe0 Date: Thu, 27 Aug 2020 09:49:50 +0800 Subject: [PATCH] [mod_av] fix record crash bug --- src/mod/applications/mod_av/avformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_av/avformat.c b/src/mod/applications/mod_av/avformat.c index b76fd599bc..ae7d2e840c 100644 --- a/src/mod/applications/mod_av/avformat.c +++ b/src/mod/applications/mod_av/avformat.c @@ -382,7 +382,7 @@ static int mod_avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputF #if (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58,7,100)) av_strlcpy(s->filename, filename, sizeof(s->filename)); #else - s->url = strdup(filename); + s->url = av_strdup(filename); switch_assert(s->url); #endif }