1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

webservices: Remove unused function heap_realloc_zero.

This function has not been used since commit
105d167744.
This commit is contained in:
Alex Henrie 2022-11-21 22:44:25 -07:00 committed by Alexandre Julliard
parent ae73e09a8d
commit 78e0caa5ef

View File

@ -406,8 +406,3 @@ static inline BOOL is_valid_parent( const struct node *node )
if (!node) return FALSE;
return (node_type( node ) == WS_XML_NODE_TYPE_ELEMENT || node_type( node ) == WS_XML_NODE_TYPE_BOF);
}
static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t size)
{
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
}