From: Robert Shearman Date: Fri, 19 Nov 2004 17:54:48 +0000 (+0000) Subject: Pass the address of the handle rather than just the handle to fix a X-Git-Tag: wine-20041201~141 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=b1e361a93e9f14cf314230de13890a0e0b554a52;p=wine%2Feterwine.git Pass the address of the handle rather than just the handle to fix a crash with IE. --- diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index 3b6407e174..abc3266c9a 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -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 );