You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Rebase against 232b18d820e08fe6534249a64d3afdbf35d0b688.
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user