17 lines · c
1// Function not intercepted on android.2// UNSUPPORTED: android3 4// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s5 6#include <stdlib.h>7#include <wchar.h>8 9int main() {10 char *buff = (char*) malloc(MB_CUR_MAX);11 free(buff);12 wcrtomb(buff, L'a', NULL);13 // CHECK: use-after-free14 // CHECK: SUMMARY15 return 0;16}17