diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/configimpl.l | 4 | ||||
-rw-r--r-- | src/util.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index 25fa78b..ed23a12 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -1189,13 +1189,13 @@ static QCString configFileToString(const char *name) if (fileOpened) { const int bSize=4096; - QCString contents(bSize); + QCString contents(bSize+1); int totalSize=0; int size; while ((size=f.readBlock(contents.rawData()+totalSize,bSize))==bSize) { totalSize+=bSize; - contents.resize(totalSize+bSize); + contents.resize(totalSize+bSize+1); } totalSize+=size+2; contents.resize(totalSize); diff --git a/src/util.cpp b/src/util.cpp index 3075d1b..2c7af7b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -2503,13 +2503,13 @@ QCString fileToString(const char *name,bool filter,bool isSourceCode) if (fileOpened) { const int bSize=4096; - QCString contents(bSize); + QCString contents(bSize+1); int totalSize=0; int size; while ((size=f.readBlock(contents.rawData()+totalSize,bSize))==bSize) { totalSize+=bSize; - contents.resize(totalSize+bSize); + contents.resize(totalSize+bSize+1); } totalSize = filterCRLF(contents.rawData(),totalSize+size)+2; contents.resize(totalSize); |