blob: 22e5164050e516f28f5f3d1b677aa7cfd635ceca [file] [log] [blame]
Mike Aizatskyf13cbee2016-04-01 18:38:58 +00001// This file is distributed under the University of Illinois Open Source
2// License. See LICENSE.TXT for details.
3
Kostya Serebryanyb92602a2016-02-04 00:02:17 +00004// Test with a leak.
5#include <cstdint>
6#include <cstddef>
7
8static volatile void *Sink;
9
10extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
Kostya Serebryany1bfd5832016-04-20 00:24:21 +000011 if (Size > 0 && *Data == 'H') {
12 Sink = new int;
13 Sink = nullptr;
14 }
Kostya Serebryanyb92602a2016-02-04 00:02:17 +000015 return 0;
16}
17