8 Oct
2022
8 Oct
'22
4:13 p.m.
On 08/10/2022 12:11, Alistair Leslie-Hughes wrote:
@@ -831,6 +832,7 @@ static ULONG WINAPI token_Release( ISpObjectToken *iface ) if (!ref) { if (This->token_key) RegCloseKey( This->token_key ); + heap_free(This->token_id); heap_free( This ); }
This should be free(This->token_id) since you allocated it with wcsdup.