include: Annotate NdrGetBuffer with __WINE_(ALLOC_SIZE|MALLOC).
It would be nice to annotate it with __WINE_DEALLOC(NdrFreeBuffer) too, but that causes a bunch of spurious -Wfree-nonheap-object warnings.
This commit is contained in:
parent
6599f2ff90
commit
e7364e2165
1 changed files with 2 additions and 1 deletions
|
@ -692,7 +692,8 @@ RPCRTAPI void RPC_ENTRY
|
|||
PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDesc,
|
||||
PFORMAT_STRING pFormat, void *pParamList );
|
||||
RPCRTAPI unsigned char* RPC_ENTRY
|
||||
NdrGetBuffer( PMIDL_STUB_MESSAGE stubmsg, ULONG buflen, RPC_BINDING_HANDLE handle );
|
||||
NdrGetBuffer( PMIDL_STUB_MESSAGE stubmsg, ULONG buflen, RPC_BINDING_HANDLE handle )
|
||||
__WINE_ALLOC_SIZE(2) __WINE_MALLOC;
|
||||
RPCRTAPI void RPC_ENTRY
|
||||
NdrFreeBuffer( PMIDL_STUB_MESSAGE pStubMsg );
|
||||
RPCRTAPI unsigned char* RPC_ENTRY
|
||||
|
|
Loading…
Add table
Reference in a new issue