fix bufferoverflow

+  double buffersize for mulitybytes
 +  stop processing if no charater is consumed within the loop
This commit is contained in:
Keywan Ghadami 2015-12-28 16:33:17 +01:00
parent 4f0cced6b4
commit 6293c9eb80
1 changed files with 9 additions and 1 deletions

View File

@ -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 {