Rebase against 232b18d820e08fe6534249a64d3afdbf35d0b688.

This commit is contained in:
Alistair Leslie-Hughes 2024-02-23 10:04:43 +11:00
parent ea4b6adbe9
commit b0736d0417
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -1 +1 @@
340a4b05b50fce02215213c21993fdf793e9d519
232b18d820e08fe6534249a64d3afdbf35d0b688