22 Aug
2023
22 Aug
'23
8:56 a.m.
Nikolay Sivov (@nsivov) commented about dlls/oleaut32/connpt.c:
} if(i == This->maxSinks) { This->maxSinks += MAXSINKS; - This->sinks = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, This->sinks, - This->maxSinks * sizeof(IUnknown *)); + This->sinks = _recalloc(This->sinks, This->maxSinks, sizeof(IUnknown*)); This one is not in msvcrt. Even if we link to ucrtbase at the moment, I think it's valuable to have a possibility to switch to msvcrt, which is what's used on Windows.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3617#note_42995