3 Nov
2015
3 Nov
'15
2:37 p.m.
On Thu, Oct 29, 2015 at 01:20:57PM +0800, Jactry Zeng wrote:
diff --git a/dlls/riched20/writer.c b/dlls/riched20/writer.c index 2c7386a..72a8db5 100644 --- a/dlls/riched20/writer.c +++ b/dlls/riched20/writer.c @@ -63,6 +63,7 @@ ME_StreamOutFlush(ME_OutStream *pStream) /* Don't resend partial chunks if nWritten < pStream->pos */ } pStream->pos = 0; + pStream->written += nWritten; return TRUE; }
While this is probably correct, it would be easy to add tests for this. We already have EM_STREAMOUT tests, so just add checks on their return values. Huw.