C++: Correct test annotation.

This commit is contained in:
Geoffrey White
2020-10-22 09:45:09 +01:00
parent e89e99deaa
commit 227bf91626

View File

@@ -192,7 +192,7 @@ void *memcpy(void *dest, void *src, int len);
void test_memcpy(int *source) {
int x;
memcpy(&x, source, sizeof(int));
sink(x);
sink(x); // tainted
}
// --- std::swap ---