Module: wine Branch: master Commit: 654651bf23ee8ef4e3e9d72cc1a16815b6789b09 URL: https://gitlab.winehq.org/wine/wine/-/commit/654651bf23ee8ef4e3e9d72cc1a1681...
Author: Alex Henrie alexhenrie24@gmail.com Date: Thu Dec 8 20:00:05 2022 -0700
wintrust: Annotate WINTRUST_Alloc with __WINE_(DEALLOC|MALLOC).
---
dlls/wintrust/wintrust_priv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/wintrust/wintrust_priv.h b/dlls/wintrust/wintrust_priv.h index 66c925ade5f..08025dbba9e 100644 --- a/dlls/wintrust/wintrust_priv.h +++ b/dlls/wintrust/wintrust_priv.h @@ -18,8 +18,9 @@ #ifndef __WINTRUST_PRIV_H__ #define __WINTRUST_PRIV_H__
-void * WINAPI WINTRUST_Alloc(DWORD cb) __WINE_ALLOC_SIZE(1) DECLSPEC_HIDDEN; void WINAPI WINTRUST_Free(void *p) DECLSPEC_HIDDEN; +void * WINAPI WINTRUST_Alloc(DWORD cb) + __WINE_ALLOC_SIZE(1) __WINE_DEALLOC(WINTRUST_Free) __WINE_MALLOC DECLSPEC_HIDDEN; BOOL WINAPI WINTRUST_AddStore(CRYPT_PROVIDER_DATA *data, HCERTSTORE store) DECLSPEC_HIDDEN; BOOL WINAPI WINTRUST_AddSgnr(CRYPT_PROVIDER_DATA *data, BOOL fCounterSigner, DWORD idxSigner, CRYPT_PROVIDER_SGNR *sgnr) DECLSPEC_HIDDEN;