[INSENG] Sync with Wine Staging 2.2. CORE-12823

dabb589 inseng: Add a __WINE_ALLOC_SIZE attribute to heap_alloc().

svn path=/trunk/; revision=73951
This commit is contained in:
Amine Khaldi 2017-02-26 17:34:21 +00:00
parent 3f8b42f823
commit 13d03d3364
2 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,9 @@
WINE_DEFAULT_DEBUG_CHANNEL(inseng);
static inline void *heap_alloc(size_t len)
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
{
return HeapAlloc(GetProcessHeap(), 0, len);
return HeapAlloc(GetProcessHeap(), 0, size);
}
static inline void *heap_zero_alloc(size_t len)

View File

@ -81,7 +81,7 @@ reactos/dll/win32/imm32 # Synced to Wine-1.7.27
reactos/dll/win32/inetcomm # Synced to WineStaging-1.9.23
reactos/dll/win32/inetmib1 # Synced to WineStaging-1.9.11
reactos/dll/win32/initpki # Synced to WineStaging-1.9.11
reactos/dll/win32/inseng # Synced to WineStaging-1.9.23
reactos/dll/win32/inseng # Synced to WineStaging-2.2
reactos/dll/win32/iphlpapi # Out of sync
reactos/dll/win32/itircl # Synced to WineStaging-1.9.11
reactos/dll/win32/itss # Synced to WineStaging-1.9.11