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:
parent
272954bd81
commit
06b19b018a
|
@ -3013,7 +3013,7 @@ static void HTTP_CloseHTTPRequestHandle(LPWININETHANDLEHEADER hdr)
|
|||
|
||||
TRACE("\n");
|
||||
|
||||
WININET_Release(&lpwhr->hdr);
|
||||
WININET_Release(&lpwhr->lpHttpSession->hdr);
|
||||
|
||||
HTTP_CloseConnection(lpwhr);
|
||||
|
||||
|
|
Loading…
Reference in New Issue