Merge pull request #823 from mangshe0/syb3

[mod_av] Fix record crash bug
This commit is contained in:
Andrey Volk 2020-12-23 20:38:08 +04:00 committed by GitHub
commit dc388e9389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}