mirror of
https://github.com/reactos/reactos.git
synced 2024-12-04 17:03:30 +08:00
[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:
parent
3f8b42f823
commit
13d03d3364
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user