Commit 78e0caa5 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

webservices: Remove unused function heap_realloc_zero.

This function has not been used since commit 105d1677.
parent ae73e09a
......@@ -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);
}
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