Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2f3805a3
Commit
2f3805a3
authored
Aug 23, 2007
by
Misha Koshelev
Committed by
Alexandre Julliard
Aug 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Send INTERNET_STATUS_HANDLE_CLOSING when object is being destroyed as native does.
parent
0f117e56
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
internet.c
dlls/wininet/internet.c
+3
-6
No files found.
dlls/wininet/internet.c
View file @
2f3805a3
...
...
@@ -178,6 +178,9 @@ BOOL WININET_Release( LPWININETHANDLEHEADER info )
TRACE
(
"closing connection %p
\n
"
,
info
);
info
->
close_connection
(
info
);
}
INTERNET_SendCallback
(
info
,
info
->
dwContext
,
INTERNET_STATUS_HANDLE_CLOSING
,
&
info
->
hInternet
,
sizeof
(
HINTERNET
));
TRACE
(
"destroying object %p
\n
"
,
info
);
info
->
destroy
(
info
);
}
...
...
@@ -990,12 +993,6 @@ BOOL WINAPI InternetCloseHandle(HINTERNET hInternet)
return
FALSE
;
}
/* FIXME: native appears to send this from the equivalent of
* WININET_Release */
INTERNET_SendCallback
(
lpwh
,
lpwh
->
dwContext
,
INTERNET_STATUS_HANDLE_CLOSING
,
&
hInternet
,
sizeof
(
HINTERNET
));
WININET_FreeHandle
(
hInternet
);
WININET_Release
(
lpwh
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment