Commit 157a0199 authored by Alex Villacís Lasso's avatar Alex Villacís Lasso Committed by Alexandre Julliard

riched20: Prevent overflow on richedit debug channel.

parent bbe91045
...@@ -92,7 +92,7 @@ ME_StreamOutMove(ME_OutStream *pStream, const char *buffer, int len) ...@@ -92,7 +92,7 @@ ME_StreamOutMove(ME_OutStream *pStream, const char *buffer, int len)
int space = STREAMOUT_BUFFER_SIZE - pStream->pos; int space = STREAMOUT_BUFFER_SIZE - pStream->pos;
int fit = min(space, len); int fit = min(space, len);
TRACE("%u:%u:%.*s\n", pStream->pos, fit, fit, buffer); TRACE("%u:%u:%s\n", pStream->pos, fit, debugstr_an(buffer,fit));
memmove(pStream->buffer + pStream->pos, buffer, fit); memmove(pStream->buffer + pStream->pos, buffer, fit);
len -= fit; len -= fit;
buffer += fit; buffer += fit;
......
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