[2/2] msxml3/httprequest: Implement IXMLHttpRequest::setRequestHeader() (still try3)

Jacek Caban jacek at codeweavers.com
Tue Sep 28 06:53:53 CDT 2010


  Hi Nikolay,

+    entry = heap_alloc(sizeof(*entry));
+    if (!entry) return E_OUTOFMEMORY;
+
+    /* new header */
+    list_add_head(&This->reqheaders,&entry->entry);
+
+    return S_OK;


It seems like filling the new header's name and value is missing here.


Jacek



More information about the wine-devel mailing list