appwiz.cpl: Add __WINE_ALLOC_SIZE attributes to heap_xxx() functions.

Francois Gouget fgouget at free.fr
Wed Feb 8 10:52:14 CST 2017


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/appwiz.cpl/appwiz.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/appwiz.cpl/appwiz.h b/dlls/appwiz.cpl/appwiz.h
index 77636ae8787..1e60daf6c3d 100644
--- a/dlls/appwiz.cpl/appwiz.h
+++ b/dlls/appwiz.cpl/appwiz.h
@@ -27,12 +27,12 @@ BOOL install_addon(addon_t) DECLSPEC_HIDDEN;
 
 extern HINSTANCE hInst DECLSPEC_HIDDEN;
 
-static inline void *heap_alloc(size_t len)
+static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
 {
     return HeapAlloc(GetProcessHeap(), 0, len);
 }
 
-static inline void *heap_realloc(void *mem, size_t len)
+static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
 {
     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
 }
-- 
2.11.0




More information about the wine-patches mailing list