1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

ieframe: Implement DocObjectService_IsErrorUrl.

Needed to prevent an infinite loop when the error page itself fails to load
(mshtml bails out early).

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
Gabriel Ivăncescu 2023-10-05 18:57:46 +03:00 committed by Alexandre Julliard
parent 5d17e7e4a8
commit c737b283d0

View File

@ -930,9 +930,10 @@ static HRESULT WINAPI DocObjectService_IsErrorUrl(
BOOL *pfIsError)
{
ShellBrowser *This = impl_from_IDocObjectService(iface);
FIXME("%p %s %p\n", This, debugstr_w(lpszUrl), pfIsError);
*pfIsError = FALSE;
TRACE("(%p)->(%s %p)\n", This, debugstr_w(lpszUrl), pfIsError);
*pfIsError = !!error_url_frag(lpszUrl);
return S_OK;
}