mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 02:40:49 +00:00
Kernel: Propagate Vector append errors in two places in Ext2FS
There are a bunch more of these, just taking care of some simple ones.
This commit is contained in:
@@ -1169,7 +1169,7 @@ ErrorOr<void> Ext2FSInode::add_child(Inode& child, const StringView& name, mode_
|
||||
TRY(traverse_as_directory([&](auto& entry) -> ErrorOr<void> {
|
||||
if (name == entry.name)
|
||||
return EEXIST;
|
||||
entries.append({ entry.name, entry.inode.index(), entry.file_type });
|
||||
TRY(entries.try_append({ entry.name, entry.inode.index(), entry.file_type }));
|
||||
return {};
|
||||
}));
|
||||
|
||||
@@ -1203,7 +1203,7 @@ ErrorOr<void> Ext2FSInode::remove_child(const StringView& name)
|
||||
Vector<Ext2FSDirectoryEntry> entries;
|
||||
TRY(traverse_as_directory([&](auto& entry) -> ErrorOr<void> {
|
||||
if (name != entry.name)
|
||||
entries.append({ entry.name, entry.inode.index(), entry.file_type });
|
||||
TRY(entries.try_append({ entry.name, entry.inode.index(), entry.file_type }));
|
||||
return {};
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user