[vlc-devel] [PATCH] opengl: vaapi: silence strncpy warning
Alexandre Janniaux
ajanni at videolabs.io
Tue Sep 3 15:35:31 CEST 2019
Silence -Wstringop-truncation warning.
---
modules/video_output/opengl/converter_vaapi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/opengl/converter_vaapi.c b/modules/video_output/opengl/converter_vaapi.c
index 504969f4da..038d98bc08 100644
--- a/modules/video_output/opengl/converter_vaapi.c
+++ b/modules/video_output/opengl/converter_vaapi.c
@@ -310,7 +310,7 @@ tc_va_check_interop_blacklist(opengl_tex_converter_t *tc, VADisplay *vadpy)
};
char vendor_prefix[BL_SIZE_MAX];
- strncpy(vendor_prefix, vendor, BL_SIZE_MAX);
+ strncpy(vendor_prefix, vendor, BL_SIZE_MAX-1);
vendor_prefix[BL_SIZE_MAX - 1] = '\0';
const char *found = bsearch(vendor_prefix, blacklist_prefix,
--
2.23.0
More information about the vlc-devel
mailing list