On Tue May 13 22:07:23 2025 +0000, Nikolay Sivov wrote:
Do we need this private heap at all?
From PSDRV_GetFontMetrics():
``` * If this function fails, PSDRV_Init will destroy PSDRV_Heap, so don't worry * about freeing all the memory that's been allocated. ```
It looks like naïvely replacing PSDRV_Heap with GetProcessHeap() will result in memory leak, as it's using the heap as sort of a local arena.