[2/3] msvcirt: Implement istream::ws

Iván Matellanes matellanesivan at gmail.com
Thu Jul 21 04:56:51 CDT 2016


Signed-off-by: Iván Matellanes <matellanes.ivan at gmail.com>
---
 dlls/msvcirt/msvcirt.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcirt/msvcirt.c b/dlls/msvcirt/msvcirt.c
index 9361d6b..7ea6541 100644
--- a/dlls/msvcirt/msvcirt.c
+++ b/dlls/msvcirt/msvcirt.c
@@ -3546,8 +3546,9 @@ int __thiscall istream_getdouble(istream *this, char *str, int count)
 /* ?ws@@YAAEAVistream@@AEAV1@@Z */
 istream* __cdecl istream_ws(istream *this)
 {
-   FIXME("(%p) stub\n", this);
-   return this;
+    TRACE("(%p)\n", this);
+    istream_eatwhite(this);
+    return this;
 }
 
 /******************************************************************
-- 
2.7.4




More information about the wine-patches mailing list