Revert "[VFS] Fixed crash on filename extraction from path."
This reverts commit02f5316562. It's not needed anymore thanks to6cba5ba7e6
This commit is contained in:
@@ -20,15 +20,14 @@
|
||||
namespace xe {
|
||||
namespace vfs {
|
||||
|
||||
NullEntry::NullEntry(Device* device, Entry* parent, std::string path,
|
||||
const std::string_view name)
|
||||
: Entry(device, parent, path, name) {}
|
||||
NullEntry::NullEntry(Device* device, Entry* parent, std::string path)
|
||||
: Entry(device, parent, path) {}
|
||||
|
||||
NullEntry::~NullEntry() = default;
|
||||
|
||||
NullEntry* NullEntry::Create(Device* device, Entry* parent,
|
||||
const std::string& path) {
|
||||
auto entry = new NullEntry(device, parent, path, "");
|
||||
auto entry = new NullEntry(device, parent, path);
|
||||
|
||||
entry->create_timestamp_ = 0;
|
||||
entry->access_timestamp_ = 0;
|
||||
|
||||
Reference in New Issue
Block a user