Bug 475652 - Missing suppression for __wcsncpy_avx2 (strncpy-avx2.S:308)?
[valgrind.git] / memcheck / tests / doublefree.c
blob3c27050813a09e3e73738ffe0a8af47ce7060af7
2 #include <stdio.h>
3 #include <stdlib.h>
5 int main ( void )
7 int i;
8 void* p = malloc(177);
9 for (i = 0; i < 2; i++)
10 free(p);
11 return 0;