msvcp90: Fix EOF delimiter handling in basic_istream<char>::ignore.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45495 Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f407828f97
commit
b5415c42ea
|
@ -8101,7 +8101,7 @@ basic_istream_char* __thiscall basic_istream_char_ignore(basic_istream_char *thi
|
|||
break;
|
||||
}
|
||||
|
||||
if(ch==(unsigned char)delim)
|
||||
if(ch==delim)
|
||||
break;
|
||||
|
||||
this->count++;
|
||||
|
|
|
@ -8583,7 +8583,7 @@ basic_istream_char* __thiscall basic_istream_char_ignore(basic_istream_char *thi
|
|||
break;
|
||||
}
|
||||
|
||||
if(ch==(unsigned char)delim)
|
||||
if(ch==delim)
|
||||
break;
|
||||
|
||||
this->count++;
|
||||
|
|
Loading…
Reference in New Issue