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

Alexandre Julliard julliard at winehq.org
Thu Feb 9 15:54:25 CST 2017


Module: wine
Branch: master
Commit: 71aa8ee1a2b854405851fc92054d330698b81653
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=71aa8ee1a2b854405851fc92054d330698b81653

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Feb  8 17:52:14 2017 +0100

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 77636ae..1e60daf 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);
 }




More information about the wine-cvs mailing list