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:
parent
5d17e7e4a8
commit
c737b283d0
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue