mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
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
Block a user