mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +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:
parent
5ce753b74d
commit
4661ca5f15
Notes:
sideshowbarker
2024-07-18 01:18:07 +09:00
Author: https://github.com/awesomekling
Commit: 4661ca5f15
1 changed files with 2 additions and 2 deletions
|
@ -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 {};
|
||||
}));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue