[BUG_FIXED] Fix Setting on Cloud for dropbox not working issue.

This commit is contained in:
Don Ho 2015-04-06 01:49:53 +02:00
parent 1f8ad1e75c
commit 73f47a2c04
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ std::string getFileContent(const TCHAR *file2read)
if (lenFile >= blockSize - 1)
data[blockSize - 1] = '\0';
else
data[lenFile - 1] = '\0';
data[lenFile] = '\0';
wholeFileContent += data;