[PATCH 3/5] usp10: Use heap_alloc_zero() instead of HeapAlloc() with HEAP_ZERO_MEMORY.

Sebastian Lackner sebastian at fds-team.de
Thu Mar 9 08:51:08 CST 2017


On 09.03.2017 10:37, Henri Verbeet wrote:
> -static inline BOOL heap_free(void *mem)
> -{
> -    return HeapFree(GetProcessHeap(), 0, mem);
> -}
[...]
> +static inline void heap_free(void *mem)
> +{
> +    HeapFree(GetProcessHeap(), 0, mem);
> +}

I'm not sure if Francois is happy with this change. In other dlls, he
has made the exact opposite change in his effort to standardize those
functions.




More information about the wine-devel mailing list