[mod_av] fix record crash bug
This commit is contained in:
parent
ccce984602
commit
fb0c46e5af
|
@ -382,7 +382,7 @@ static int mod_avformat_alloc_output_context2(AVFormatContext **avctx, AVOutputF
|
||||||
#if (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58,7,100))
|
#if (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58,7,100))
|
||||||
av_strlcpy(s->filename, filename, sizeof(s->filename));
|
av_strlcpy(s->filename, filename, sizeof(s->filename));
|
||||||
#else
|
#else
|
||||||
s->url = strdup(filename);
|
s->url = av_strdup(filename);
|
||||||
switch_assert(s->url);
|
switch_assert(s->url);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue