aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/posix
diff options
context:
space:
mode:
authorMax Horn2004-11-21 13:18:07 +0000
committerMax Horn2004-11-21 13:18:07 +0000
commit01cb15b9b272301d5d135c66caa9ee02d1f62b08 (patch)
treeba1e4a66d668f1062f528018f76891b81966ec81 /backends/fs/posix
parenteb44281ecb6ae01155c3e93c31b29b14cfcd6e73 (diff)
downloadscummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.tar.gz
scummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.tar.bz2
scummvm-rg350-01cb15b9b272301d5d135c66caa9ee02d1f62b08.zip
Since we do ref counting on the nodes now, we can re-use the root nodes now
svn-id: r15851
Diffstat (limited to 'backends/fs/posix')
-rw-r--r--backends/fs/posix/posix-fs.cpp21
1 files changed, 9 insertions, 12 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index a2f35ad108..5834736806 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -185,22 +185,19 @@ FSList POSIXFilesystemNode::listDir(ListMode mode) const {
}
AbstractFilesystemNode *POSIXFilesystemNode::parent() const {
+ if (_path == "/")
+ return 0;
+
POSIXFilesystemNode *p = new POSIXFilesystemNode();
+ const char *start = _path.c_str();
+ const char *end = lastPathComponent(_path);
+
+ p->_path = String(start, end - start);
+ p->_displayName = lastPathComponent(p->_path);
- // Root node is its own parent. Still we can't just return this
- // as the GUI code will call delete on the old node.
- if (_path != "/") {
- const char *start = _path.c_str();
- const char *end = lastPathComponent(_path);
-
- p->_path = String(start, end - start);
- p->_displayName = lastPathComponent(p->_path);
- } else {
- p->_path = _path;
- p->_displayName = _displayName;
- }
p->_isValid = true;
p->_isDirectory = true;
+
return p;
}