msxml3: No need to zero memory on allocation.

This commit is contained in:
Nikolay Sivov 2011-03-13 03:00:54 +03:00 committed by Alexandre Julliard
parent c26c55995a
commit 072b2db2af
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ static void query_serror(void* ctx, xmlErrorPtr err)
HRESULT create_selection(xmlNodePtr node, xmlChar* query, IXMLDOMNodeList **out)
{
domselection *This = heap_alloc_zero(sizeof(domselection));
domselection *This = heap_alloc(sizeof(domselection));
xmlXPathContextPtr ctxt = xmlXPathNewContext(node->doc);
HRESULT hr;