mshtml/tests: Accept rare unknown error in ReportResult.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54087
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
Gabriel Ivăncescu 2022-12-06 17:21:49 +02:00 committed by Alexandre Julliard
parent f21e262491
commit 60bddb6b7d

View file

@ -5051,7 +5051,7 @@ static HRESULT WINAPI Protocol_Continue(IInternetProtocolEx *iface, PROTOCOLDATA
ok(hres == S_OK, "ReportData failed: %08lx\n", hres); ok(hres == S_OK, "ReportData failed: %08lx\n", hres);
hres = IInternetProtocolSink_ReportResult(This->sink, S_OK, 0, NULL); hres = IInternetProtocolSink_ReportResult(This->sink, S_OK, 0, NULL);
ok(hres == S_OK, "ReportResult failed: %08lx\n", hres); ok(hres == S_OK || broken(hres == 0x80ef0001), "ReportResult failed: %08lx\n", hres);
IInternetProtocolEx_Release(&This->IInternetProtocolEx_iface); IInternetProtocolEx_Release(&This->IInternetProtocolEx_iface);
return S_OK; return S_OK;