=?UTF-8?Q?Iv=C3=A1n=20Matellanes=20?=: msvcirt: Implement ios::rdbuf.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jul 20 14:20:49 CDT 2015


Module: wine
Branch: master
Commit: 0fa257924dc8d092b14872e94babbc806acbc0fe
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0fa257924dc8d092b14872e94babbc806acbc0fe

Author: Iván Matellanes <matellanesivan at 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 at ios@@QBEHXZ */




More information about the wine-cvs mailing list