Commit b1e361a9 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Pass the address of the handle rather than just the handle to fix a

crash with IE.
parent 5102cb53
......@@ -997,8 +997,8 @@ BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
}
SendAsyncCallback(lpwh, lpwh->dwContext,
INTERNET_STATUS_HANDLE_CLOSING, hInternet,
sizeof(HINTERNET));
INTERNET_STATUS_HANDLE_CLOSING, &hInternet,
sizeof(HINTERNET*));
if( lpwh->lpwhparent )
WININET_Release( lpwh->lpwhparent );
......
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