Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
64d71516
Commit
64d71516
authored
Nov 29, 2012
by
Jason Edmeades
Committed by
Alexandre Julliard
Nov 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Wait for command to complete when spawned through cmd /c.
parent
8b98b6a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
wcmdmain.c
programs/cmd/wcmdmain.c
+4
-2
No files found.
programs/cmd/wcmdmain.c
View file @
64d71516
...
...
@@ -1201,8 +1201,10 @@ void WCMD_run_program (WCHAR *command, BOOL called)
if
(
!
assumeInternal
&&
!
console
)
errorlevel
=
0
;
else
{
/* Always wait when called in a batch program context */
if
(
assumeInternal
||
context
||
!
HIWORD
(
console
))
WaitForSingleObject
(
pe
.
hProcess
,
INFINITE
);
/* Always wait when non-interactive (cmd /c or in batch program),
or for console applications */
if
(
assumeInternal
||
!
interactive
||
!
HIWORD
(
console
))
WaitForSingleObject
(
pe
.
hProcess
,
INFINITE
);
GetExitCodeProcess
(
pe
.
hProcess
,
&
errorlevel
);
if
(
errorlevel
==
STILL_ACTIVE
)
errorlevel
=
0
;
}
...
...
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