msxml3: Fix allocated length for header list element.
This commit is contained in:
parent
67448e5661
commit
05ea6855bf
|
@ -502,7 +502,7 @@ static void add_response_header(httprequest *This, const WCHAR *data, int len)
|
|||
/* new header */
|
||||
TRACE("got header %s:%s\n", debugstr_w(header), debugstr_w(value));
|
||||
|
||||
entry = heap_alloc(sizeof(*header));
|
||||
entry = heap_alloc(sizeof(*entry));
|
||||
entry->header = header;
|
||||
entry->value = value;
|
||||
list_add_head(&This->respheaders, &entry->entry);
|
||||
|
|
Loading…
Reference in New Issue