fix little core

This commit is contained in:
Matt Wells
2015-08-17 15:04:16 -07:00
parent 30693c3cf7
commit dd9b4e0ca2

@ -104,7 +104,7 @@ bool BigFile::reset ( ) {
bool BigFile::addParts ( char *dirname ) {
// if dirname is NULL return true
if ( ! dirname[0] ) return true;
if ( ! dirname || ! dirname[0] ) return true;
// . now set the names of all the Files that we consist of
// . get the directory entry and find out what parts we have
Dir dir;