mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
Rebase against 232b18d820e08fe6534249a64d3afdbf35d0b688.
This commit is contained in:
parent
ea4b6adbe9
commit
b0736d0417
@ -144,7 +144,7 @@ index 459466a1234..d059c20ae81 100644
|
||||
+ if (This->request_body) ISequentialStream_Release(This->request_body);
|
||||
+ if (This->callback3) IXMLHTTPRequest3Callback_Release(This->callback3);
|
||||
+ if (This->callback) IXMLHTTPRequest2Callback_Release(This->callback);
|
||||
+ heap_free(This);
|
||||
+ free(This);
|
||||
+ RtwqShutdown();
|
||||
+ }
|
||||
+
|
||||
@ -545,7 +545,7 @@ index 459466a1234..d059c20ae81 100644
|
||||
+ struct xml_http_request_2 *xhr2;
|
||||
+ TRACE("(%p)\n", obj);
|
||||
+
|
||||
+ if (!(xhr2 = heap_alloc(sizeof(*xhr2)))) return E_OUTOFMEMORY;
|
||||
+ if (!(xhr2 = malloc(sizeof(*xhr2)))) return E_OUTOFMEMORY;
|
||||
+
|
||||
+ init_httprequest(&xhr2->req);
|
||||
+ xhr2->IXMLHTTPRequest3_iface.lpVtbl = &XMLHTTPRequest3Vtbl;
|
||||
|
@ -1 +1 @@
|
||||
340a4b05b50fce02215213c21993fdf793e9d519
|
||||
232b18d820e08fe6534249a64d3afdbf35d0b688
|
||||
|
Loading…
Reference in New Issue
Block a user