wininet: Fix the releasing of the wrong reference count in HTTP_CloseHTTPRequestHandle.

lpwhr obviously already has a reference count of 0 because it is being destroyed.
This commit is contained in:
Rob Shearman 2007-01-04 18:22:19 +00:00 committed by Alexandre Julliard
parent 272954bd81
commit 06b19b018a
1 changed files with 1 additions and 1 deletions

View File

@ -3013,7 +3013,7 @@ static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr)
TRACE("\n");
WININET_Release(&lpwhr->hdr);
WININET_Release(&lpwhr->lpHttpSession->hdr);
HTTP_CloseConnection(lpwhr);