From 01cb15b9b272301d5d135c66caa9ee02d1f62b08 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 21 Nov 2004 13:18:07 +0000 Subject: Since we do ref counting on the nodes now, we can re-use the root nodes now svn-id: r15851 --- backends/fs/posix/posix-fs.cpp | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'backends/fs/posix') 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; } -- cgit v1.2.3