Commit 925e56ac authored by Kevin Puetz's avatar Kevin Puetz Committed by Alexandre Julliard

msvcp: Use fput[w]c in basic_filebuf_char_overflow.

parent 22969d43
...@@ -3374,7 +3374,7 @@ int __thiscall basic_filebuf_char_overflow(basic_filebuf_char *this, int c) ...@@ -3374,7 +3374,7 @@ int __thiscall basic_filebuf_char_overflow(basic_filebuf_char *this, int c)
return !c; return !c;
if(!this->cvt) if(!this->cvt)
return fwrite(&ch, sizeof(char), 1, this->file) ? c : EOF; return fputc(ch, this->file);
from_next = &ch; from_next = &ch;
do { do {
...@@ -4009,7 +4009,7 @@ unsigned short __thiscall basic_filebuf_wchar_overflow(basic_filebuf_wchar *this ...@@ -4009,7 +4009,7 @@ unsigned short __thiscall basic_filebuf_wchar_overflow(basic_filebuf_wchar *this
return !c; return !c;
if(!this->cvt) if(!this->cvt)
return fwrite(&ch, sizeof(wchar_t), 1, this->file) ? c : WEOF; return fputwc(ch, this->file);
from_next = &ch; from_next = &ch;
do { do {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment