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
59262774
Commit
59262774
authored
Jan 10, 2010
by
Uwe Bonnes
Committed by
Alexandre Julliard
Jan 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: In unbuffered text mode reading \r\n with fgetc fails.
parent
54aa6179
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
file.c
dlls/msvcrt/tests/file.c
+8
-0
No files found.
dlls/msvcrt/tests/file.c
View file @
59262774
...
...
@@ -438,6 +438,14 @@ static void test_fgetc( void )
ret
=
fgetc
(
tempfh
);
ok
(
ich
==
ret
,
"Second fgetc expected %x got %x
\n
"
,
ich
,
ret
);
fclose
(
tempfh
);
tempfh
=
fopen
(
tempf
,
"wt"
);
fputc
(
'\n'
,
tempfh
);
fclose
(
tempfh
);
tempfh
=
fopen
(
tempf
,
"wt"
);
setbuf
(
tempfh
,
NULL
);
ret
=
fgetc
(
tempfh
);
ok
(
ret
==
-
1
,
"Unbuffered fgetc in text mode must failed on
\\
r
\\
n
\n
"
);
fclose
(
tempfh
);
unlink
(
tempf
);
free
(
tempf
);
}
...
...
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