mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 10:42:51 +00:00
Fix mkdir with relative paths.
This commit is contained in:
parent
de4604ac95
commit
f5a0b6961c
Notes:
sideshowbarker
2024-07-19 16:09:48 +09:00
Author: https://github.com/awesomekling
Commit: f5a0b6961c
5 changed files with 49 additions and 185 deletions
VirtualFileSystem
|
@ -1011,7 +1011,7 @@ InodeIdentifier Ext2FS::create_inode(InodeIdentifier parentInode, const String&
|
|||
ASSERT(parentInode.fsid() == id());
|
||||
ASSERT(isDirectoryInode(parentInode.index()));
|
||||
|
||||
dbgprintf("Ext2FS: Adding inode '%s' (mode %o) to parent directory %u:\n", name.characters(), mode, parentInode.index());
|
||||
dbgprintf("Ext2FS: Adding inode '%s' (mode %u) to parent directory %u:\n", name.characters(), mode, parentInode.index());
|
||||
|
||||
// NOTE: This doesn't commit the inode allocation just yet!
|
||||
auto inode = allocateInode(0, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue