From dfb025c39ea254f270707cfb693dae3b83cb3231 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Tue, 6 Dec 2022 22:33:57 -0700 Subject: [PATCH] include: Annotate GdipAlloc with __WINE_(DEALLOC|MALLOC). --- include/gdiplusmem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gdiplusmem.h b/include/gdiplusmem.h index fad8ed6772d..896fdf43a03 100644 --- a/include/gdiplusmem.h +++ b/include/gdiplusmem.h @@ -25,8 +25,8 @@ extern "C" { #endif -void* WINGDIPAPI GdipAlloc(SIZE_T) __WINE_ALLOC_SIZE(1); void WINGDIPAPI GdipFree(void*); +void* WINGDIPAPI GdipAlloc(SIZE_T) __WINE_ALLOC_SIZE(1) __WINE_DEALLOC(GdipFree) __WINE_MALLOC; #ifdef __cplusplus }