Minor Update:

- Increase buffer of JSONparse to ensure reading for long strings
This commit is contained in:
Charl Wentzel
2019-04-06 13:45:45 +02:00
parent bc89021a0e
commit 7acdd8f704

View File

@@ -228,7 +228,7 @@ bool CJSONparse::ReadFromHandle( const char * BasePath, int Handle, bool pRefill
InputHandle = Handle;
// Load Buffer
CreateBuffer( 50 );
CreateBuffer( 500 );
if (!FillBuffer()) {
Error = true;
sprintf( ErrorText, "Could not read from file" );