From 6293c9eb80b14d2ccf0c0582e372c64c00bf75bb Mon Sep 17 00:00:00 2001 From: Keywan Ghadami Date: Mon, 28 Dec 2015 16:33:17 +0100 Subject: [PATCH] fix bufferoverflow + double buffersize for mulitybytes + stop processing if no charater is consumed within the loop --- src/dlangui/core/linestream.d | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/dlangui/core/linestream.d b/src/dlangui/core/linestream.d index c2e9881c..67267830 100644 --- a/src/dlangui/core/linestream.d +++ b/src/dlangui/core/linestream.d @@ -577,7 +577,8 @@ private class Utf8LineStream : LineStream { uint len = bytesAvailable; uint chars = 0; ubyte* b = bytes; - dchar* text = reserveTextBuf(len); + uint maxResultingBytes = len*2; //len*2 because worst case is if all input chars are singelbyte and resulting in two bytes + dchar* text = reserveTextBuf(maxResultingBytes); uint i = 0; for (; i < len; i++) { uint ch = 0; @@ -658,6 +659,13 @@ private class Utf8LineStream : LineStream { invalidCharFlag = true; break; } + + //if the code above could not read any charater stop procesing + if (bread == 0) { + invalidCharFlag = true; + break; + } + if (ch < 0x10000) { text[chars++] = ch; } else {