wininet: Return ERROR_CANCELLED for unsupported errors in InternetErrorDlg.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0eab766bce
commit
6cdccb2131
|
@ -539,7 +539,7 @@ DWORD WINAPI InternetErrorDlg(HWND hWnd, HINTERNET hRequest,
|
|||
res = ERROR_SUCCESS;
|
||||
break;
|
||||
default:
|
||||
res = ERROR_NOT_SUPPORTED;
|
||||
res = ERROR_CANCELLED;
|
||||
}
|
||||
|
||||
if(req)
|
||||
|
|
Loading…
Reference in New Issue