[FFmpeg-cvslog] avdevice/dshow_filter: Use wcscpy_s()
Michael Niedermayer
git at videolan.org
Mon Jul 15 03:01:39 EEST 2024
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon May 27 01:34:48 2024 +0200| [daf61dddc8e27424c320d5c3abe3e0c5182cd5c0] | committer: Michael Niedermayer
avdevice/dshow_filter: Use wcscpy_s()
Fixes: CID1591929 Copy into fixed size buffer
Sponsored-by: Sovereign Tech Fund
Reviewed-by: Roger Pack <rogerdpack at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=daf61dddc8e27424c320d5c3abe3e0c5182cd5c0
---
libavdevice/dshow_filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavdevice/dshow_filter.c b/libavdevice/dshow_filter.c
index 4642ac077c..2122c84626 100644
--- a/libavdevice/dshow_filter.c
+++ b/libavdevice/dshow_filter.c
@@ -135,7 +135,7 @@ long WINAPI ff_dshow_filter_JoinFilterGraph(DShowFilter *this, IFilterGraph *gra
this->info.pGraph = graph;
if (name)
- wcscpy(this->info.achName, name);
+ wcscpy_s(this->info.achName, sizeof(this->info.achName) / sizeof(wchar_t), name);
return S_OK;
}
More information about the ffmpeg-cvslog
mailing list