| 528 | } |
| 529 | |
| 530 | FileSystemRef MountSystem::_removeMountFromList(String root) |
| 531 | { |
| 532 | for (Vector<MountFS>::iterator itr = mMountList.begin(); itr != mMountList.end(); itr++) |
| 533 | { |
| 534 | if (root.equal( itr->root, String::NoCase )) |
| 535 | { |
| 536 | FileSystemRef fs = itr->fileSystem; |
| 537 | mMountList.erase(itr); |
| 538 | return fs; |
| 539 | } |
| 540 | } |
| 541 | return NULL; |
| 542 | } |
| 543 | |
| 544 | FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const |
| 545 | { |