This commit is contained in:
Adam Ierymenko 2017-06-01 12:38:04 -07:00
parent 6015b529a0
commit 1f9414a30f
2 changed files with 1 additions and 19 deletions

View file

@ -287,7 +287,7 @@ int64_t OSUtils::getFileSize(const char *path)
bool OSUtils::readFile(const char *path,std::string &buf)
{
char tmp[1024];
char tmp[16384];
FILE *f = fopen(path,"rb");
if (f) {
for(;;) {