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
9796cf38
Commit
9796cf38
authored
Nov 14, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp60: Fixed basic_istream::ipfx implementation.
parent
1cd95d4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
ios.c
dlls/msvcp60/ios.c
+2
-12
No files found.
dlls/msvcp60/ios.c
View file @
9796cf38
...
...
@@ -6756,12 +6756,7 @@ static MSVCP_bool basic_istream_char__Ipfx(basic_istream_char *this, MSVCP_bool
for
(
ch
=
basic_streambuf_char_sgetc
(
strbuf
);
;
ch
=
basic_streambuf_char_snextc
(
strbuf
))
{
if
(
ch
==
EOF
)
{
basic_ios_char_setstate
(
base
,
IOSTATE_eofbit
);
break
;
}
if
(
!
ctype_char_is_ch
(
ctype
,
_SPACE
|
_BLANK
,
ch
))
if
(
ch
==
EOF
||
!
ctype_char_is_ch
(
ctype
,
_SPACE
|
_BLANK
,
ch
))
break
;
}
}
...
...
@@ -7985,12 +7980,7 @@ static MSVCP_bool basic_istream_wchar__Ipfx(basic_istream_wchar *this, MSVCP_boo
for
(
ch
=
basic_streambuf_wchar_sgetc
(
strbuf
);
;
ch
=
basic_streambuf_wchar_snextc
(
strbuf
))
{
if
(
ch
==
WEOF
)
{
basic_ios_wchar_setstate
(
base
,
IOSTATE_eofbit
);
break
;
}
if
(
!
ctype_wchar_is_ch
(
ctype
,
_SPACE
|
_BLANK
,
ch
))
if
(
ch
==
WEOF
||
!
ctype_wchar_is_ch
(
ctype
,
_SPACE
|
_BLANK
,
ch
))
break
;
}
}
...
...
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