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.