8 Nov
2024
8 Nov
'24
11:46 a.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/heap.c:
BOOL msvcrt_init_heap(void) { +#if _MSVCR_VER >= 110 + heap = GetProcessHeap(); +#else heap = HeapCreate(0, 0, 0); +#endif return heap != NULL; }
void msvcrt_destroy_heap(void) { +#if _MSVCR_VER >= 110 HeapDestroy(heap); +#endif
Please fix #if condition. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6791#note_86903