You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the leak with the static code checking tool cppcheck. There are other minor bugs as well, but this one is the biggest.
The leak is found in file master/src/lib/io/ZIP.cpp on line 511
I found the leak with the static code checking tool cppcheck. There are other minor bugs as well, but this one is the biggest.
The leak is found in file master/src/lib/io/ZIP.cpp on line 511
if(read_start<=0){std::cerr<<"ZIP: Invalid read buffer size"<<std::endl;return false;}
it should be:
if(read_start<=0){std::cerr<<"ZIP: Invalid read buffer size"<<std::endl;delete [] buf;return false;}
The text was updated successfully, but these errors were encountered: