From 4f5791ebd03eaec1c7da0865a383175b05102712 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 19:47:29 +0200 Subject: Adding upstream version 2:4.17.12+dfsg. Signed-off-by: Daniel Baumann --- testdata/source-chars-bad.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testdata/source-chars-bad.c (limited to 'testdata/source-chars-bad.c') diff --git a/testdata/source-chars-bad.c b/testdata/source-chars-bad.c new file mode 100644 index 0000000..9b43572 --- /dev/null +++ b/testdata/source-chars-bad.c @@ -0,0 +1,23 @@ +/* + * "Trojan Source" CVE-2021-42574 test. + * + * Based on an example from https://lwn.net/Articles/874951/ + */ +#include + +int main(int argc, char *argv[]) +{ + int isAdmin = 0; + +#if 0 + /* This is what is really there. */ + + /*«RLO» } «LRI»if (isAdmin)«PDI» «LRI» begin admins only */ + puts("hello admin"); + /* end admin only «RLO» { «LRI»*/ +#else + /*‮ } ⁦if (isAdmin)⁩ ⁦ begin admins only */ + puts("hello admin"); + /* end admin only ‮ { ⁦*/ +#endif +} -- cgit v1.2.3