https://bugs.winehq.org/show_bug.cgi?id=50257
Gen Otsuji otsugen0000@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |otsugen0000@gmail.com
--- Comment #6 from Gen Otsuji otsugen0000@gmail.com --- Hi, all.
--------------------------------------- #include <stdio.h> #include <malloc.h> void * malloc(size_t size){ putchar('A'); return NULL; } int main(void){ char *p=malloc(20); return 0; } --------------------------------------- This code gets segfault on FreeBSD 12.2R. this bug has similar issue I think.