Commit c737b283 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

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: 's avatarGabriel Ivăncescu <gabrielopcode@gmail.com>
parent 5d17e7e4
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment