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
775e5f7b
Commit
775e5f7b
authored
May 26, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Reset stdio handles when they are closed.
parent
5d4a7433
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
process.c
dlls/kernel32/process.c
+6
-4
process.c
dlls/kernel32/tests/process.c
+10
-0
No files found.
dlls/kernel32/process.c
View file @
775e5f7b
...
...
@@ -2713,10 +2713,12 @@ BOOL WINAPI CloseHandle( HANDLE handle )
NTSTATUS
status
;
/* stdio handles need special treatment */
if
((
handle
==
(
HANDLE
)
STD_INPUT_HANDLE
)
||
(
handle
==
(
HANDLE
)
STD_OUTPUT_HANDLE
)
||
(
handle
==
(
HANDLE
)
STD_ERROR_HANDLE
))
handle
=
GetStdHandle
(
HandleToULong
(
handle
)
);
if
(
handle
==
(
HANDLE
)
STD_INPUT_HANDLE
)
handle
=
InterlockedExchangePointer
(
&
NtCurrentTeb
()
->
Peb
->
ProcessParameters
->
hStdInput
,
0
);
else
if
(
handle
==
(
HANDLE
)
STD_OUTPUT_HANDLE
)
handle
=
InterlockedExchangePointer
(
&
NtCurrentTeb
()
->
Peb
->
ProcessParameters
->
hStdOutput
,
0
);
else
if
(
handle
==
(
HANDLE
)
STD_ERROR_HANDLE
)
handle
=
InterlockedExchangePointer
(
&
NtCurrentTeb
()
->
Peb
->
ProcessParameters
->
hStdError
,
0
);
if
(
is_console_handle
(
handle
))
return
CloseConsoleHandle
(
handle
);
...
...
dlls/kernel32/tests/process.c
View file @
775e5f7b
...
...
@@ -1742,6 +1742,7 @@ static void test_ProcessName(void)
static
void
test_Handles
(
void
)
{
HANDLE
handle
=
GetCurrentProcess
();
HANDLE
h2
;
BOOL
ret
;
DWORD
code
;
...
...
@@ -1769,6 +1770,15 @@ static void test_Handles(void)
ok
(
!
ret
,
"GetExitCodeProcess succeeded for %p
\n
"
,
handle
);
ok
(
GetLastError
()
==
ERROR_INVALID_HANDLE
,
"wrong error %u
\n
"
,
GetLastError
()
);
#endif
handle
=
GetStdHandle
(
STD_ERROR_HANDLE
);
ok
(
handle
!=
0
,
"handle %p
\n
"
,
handle
);
CloseHandle
(
(
HANDLE
)
STD_ERROR_HANDLE
);
h2
=
GetStdHandle
(
STD_ERROR_HANDLE
);
ok
(
h2
==
0
||
broken
(
h2
==
handle
)
||
/* nt4, w2k */
broken
(
h2
==
INVALID_HANDLE_VALUE
),
/* win9x */
"wrong handle %p/%p
\n
"
,
h2
,
handle
);
}
static
void
test_SystemInfo
(
void
)
...
...
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