We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b4d6cb6 + 6b580ac commit 7c5b04aCopy full SHA for 7c5b04a
1 file changed
cpp/ql/test/query-tests/Security/CWE/CWE-457/semmle/tests/ms_vacopy.c
@@ -0,0 +1,8 @@
1
+#include <stdarg.h>
2
+
3
+int va_copy_test(va_list va) {
4
+ va_list va2;
5
+ va_copy(va2, va);
6
+ return 0;
7
+}
8
+// semmle-extractor-options: --microsoft
0 commit comments