Commit 0a5932e1 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msxml3: Remove unused function heap_strdupW.

This function has not been used since commit 5b43c42c.
parent 6a57ed80
......@@ -85,22 +85,6 @@ static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t siz
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
}
static inline LPWSTR heap_strdupW(LPCWSTR str)
{
LPWSTR ret = NULL;
if(str) {
DWORD size;
size = (lstrlenW(str)+1)*sizeof(WCHAR);
ret = heap_alloc(size);
if(ret)
memcpy(ret, str, size);
}
return ret;
}
/* XSLProcessor parameter list */
struct xslprocessor_par
{
......
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