Module: wine Branch: master Commit: 0fa257924dc8d092b14872e94babbc806acbc0fe URL: http://source.winehq.org/git/wine.git/?a=commit;h=0fa257924dc8d092b14872e94b... Author: Iván Matellanes <matellanesivan(a)gmail.com> Date: Fri Jul 17 16:36:46 2015 +0200 msvcirt: Implement ios::rdbuf. --- dlls/msvcirt/msvcirt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c index d1c5509..dbb2ea3 100644 --- a/dlls/msvcirt/msvcirt.c +++ b/dlls/msvcirt/msvcirt.c @@ -1078,8 +1078,8 @@ void** __thiscall ios_pword(const ios *this, int index) DEFINE_THISCALL_WRAPPER(ios_rdbuf, 4) streambuf* __thiscall ios_rdbuf(const ios *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return this->sb; } /* ?rdstate(a)ios@@QBEHXZ */