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
b1d9d16c
Commit
b1d9d16c
authored
Sep 27, 2012
by
Daniel Lehman
Committed by
Alexandre Julliard
Oct 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Flip fclose result check in filebuf<>::close.
parent
d6792357
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ios.c
dlls/msvcp90/ios.c
+2
-2
No files found.
dlls/msvcp90/ios.c
View file @
b1d9d16c
...
...
@@ -2429,7 +2429,7 @@ basic_filebuf_char* __thiscall basic_filebuf_char_close(basic_filebuf_char *this
/* TODO: handle exceptions */
if
(
!
basic_filebuf_char__Endwrite
(
this
))
ret
=
NULL
;
if
(
!
fclose
(
this
->
file
))
if
(
fclose
(
this
->
file
))
ret
=
NULL
;
basic_filebuf_char__Init
(
this
,
NULL
,
INITFL_close
);
...
...
@@ -3000,7 +3000,7 @@ basic_filebuf_wchar* __thiscall basic_filebuf_wchar_close(basic_filebuf_wchar *t
/* TODO: handle exceptions */
if
(
!
basic_filebuf_wchar__Endwrite
(
this
))
ret
=
NULL
;
if
(
!
fclose
(
this
->
file
))
if
(
fclose
(
this
->
file
))
ret
=
NULL
;
basic_filebuf_wchar__Init
(
this
,
NULL
,
INITFL_close
);
...
...
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