aboutsummaryrefslogtreecommitdiff
path: root/lib/Fuzzer/test/LeakTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Fuzzer/test/LeakTest.cpp')
-rw-r--r--lib/Fuzzer/test/LeakTest.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Fuzzer/test/LeakTest.cpp b/lib/Fuzzer/test/LeakTest.cpp
new file mode 100644
index 000000000000..22e5164050e5
--- /dev/null
+++ b/lib/Fuzzer/test/LeakTest.cpp
@@ -0,0 +1,17 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
+// Test with a leak.
+#include <cstdint>
+#include <cstddef>
+
+static volatile void *Sink;
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
+ if (Size > 0 && *Data == 'H') {
+ Sink = new int;
+ Sink = nullptr;
+ }
+ return 0;
+}
+