Fix for bug #2198456 "FS: Cannot add a subfolder to a non-existing folder".

svn-id: r34857
This commit is contained in:
Johannes Schickel 2008-10-27 02:30:29 +00:00
parent ea8e06fcf9
commit fb9bd9f442

View File

@ -37,7 +37,8 @@ void File::addDefaultDirectory(const String &directory) {
}
void File::addDefaultDirectory(const FSNode &dir) {
SearchMan.addDirectory(dir.getPath(), dir);
if (dir.exists() && dir.isDirectory())
SearchMan.addDirectory(dir.getPath(), dir);
}
File::File()