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
d00e8ebd
Commit
d00e8ebd
authored
Nov 19, 2014
by
Sebastian Lackner
Committed by
Alexandre Julliard
Nov 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Avoid calling close on negative value in create_console_output handler (Coverity).
parent
a5c3f387
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
console.c
server/console.c
+2
-2
No files found.
server/console.c
View file @
d00e8ebd
...
@@ -1609,12 +1609,12 @@ DECL_HANDLER(create_console_output)
...
@@ -1609,12 +1609,12 @@ DECL_HANDLER(create_console_output)
else
fd
=
-
1
;
else
fd
=
-
1
;
if
(
!
(
console
=
console_input_get
(
req
->
handle_in
,
FILE_WRITE_PROPERTIES
)))
if
(
!
(
console
=
console_input_get
(
req
->
handle_in
,
FILE_WRITE_PROPERTIES
)))
{
{
close
(
fd
);
if
(
fd
!=
-
1
)
close
(
fd
);
return
;
return
;
}
}
if
(
console_input_is_bare
(
console
)
^
(
fd
!=
-
1
))
if
(
console_input_is_bare
(
console
)
^
(
fd
!=
-
1
))
{
{
close
(
fd
);
if
(
fd
!=
-
1
)
close
(
fd
);
release_object
(
console
);
release_object
(
console
);
set_error
(
STATUS_INVALID_HANDLE
);
set_error
(
STATUS_INVALID_HANDLE
);
return
;
return
;
...
...
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