summaryrefslogtreecommitdiff
path: root/compiler-rt/test/asan/TestCases/Windows/heapalloc_uaf.cpp
blob: 34f30153c08381a9269f605893f482e2d34488e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// UNSUPPORTED: target={{.*-windows-gnu}}

// RUN: %clang_cl_asan -Od %s -Fe%t
// RUN: %env_asan_opts=windows_hook_rtl_allocators=true not %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: asan-64-bits
#include <windows.h>

int main() {
  char *buffer;
  buffer = (char *)HeapAlloc(GetProcessHeap(), 0, 32),
  HeapFree(GetProcessHeap(), 0, buffer);
  buffer[0] = 'a';
  // CHECK: AddressSanitizer: heap-use-after-free on address [[ADDR:0x[0-9a-f]+]]
  // CHECK: WRITE of size 1 at [[ADDR]] thread T0
}