mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
avfilter/vf_signature: use av_strlcpy()
Fixes: out of array access Found-by: Kira <kira_cxy@foxmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
47b7c68ae5
commit
35eeff30ca
@ -576,7 +576,8 @@ static int export(AVFilterContext *ctx, StreamContext *sc, int input)
|
||||
/* error already handled */
|
||||
av_assert0(av_get_frame_filename(filename, sizeof(filename), sic->filename, input) == 0);
|
||||
} else {
|
||||
strcpy(filename, sic->filename);
|
||||
if (av_strlcpy(filename, sic->filename, sizeof(filename)) >= sizeof(filename))
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
if (sic->format == FORMAT_XML) {
|
||||
return xml_export(ctx, sc, filename);
|
||||
|
Loading…
Reference in New Issue
Block a user