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
894c1364
Commit
894c1364
authored
May 12, 2005
by
Committed by
Alexandre Julliard
May 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Flush output buffers from _close() rather than MSVCRT_fclose().
parent
fd62fcf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
file.c
dlls/msvcrt/file.c
+7
-3
No files found.
dlls/msvcrt/file.c
View file @
894c1364
...
...
@@ -773,9 +773,13 @@ int MSVCRT__fcloseall(void)
void
msvcrt_free_io
(
void
)
{
MSVCRT__fcloseall
();
_close
(
0
);
_close
(
1
);
_close
(
2
);
/* The Win32 _fcloseall() function explicitly doesn't close stdin,
* stdout, and stderr (unlike GNU), so we need to fclose() them here
* or they won't get flushed.
*/
MSVCRT_fclose
(
&
MSVCRT__iob
[
0
]);
MSVCRT_fclose
(
&
MSVCRT__iob
[
1
]);
MSVCRT_fclose
(
&
MSVCRT__iob
[
2
]);
DeleteCriticalSection
(
&
MSVCRT_file_cs
);
}
...
...
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