forked from FFmpeg/FFmpeg
avdevice/dshow_filter: Use wcscpy_s()
Fixes: CID1591929 Copy into fixed size buffer Sponsored-by: Sovereign Tech Fund Reviewed-by: Roger Pack <rogerdpack@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8f74c313f1
commit
daf61dddc8
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ long WINAPI ff_dshow_filter_JoinFilterGraph(DShowFilter *this, IFilterGraph *gra
|
||||||
|
|
||||||
this->info.pGraph = graph;
|
this->info.pGraph = graph;
|
||||||
if (name)
|
if (name)
|
||||||
wcscpy(this->info.achName, name);
|
wcscpy_s(this->info.achName, sizeof(this->info.achName) / sizeof(wchar_t), name);
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue