Commit f3d33f57 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shdocvw: Add a __WINE_ALLOC_SIZE attribute to heap_alloc().

parent 948991f2
......@@ -53,7 +53,7 @@ static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_r
/* memory allocation functions */
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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment