浏览代码

Kernel: Propagate Vector append errors in two places in Ext2FS

There are a bunch more of these, just taking care of some simple ones.
Andreas Kling 3 年之前
父节点
当前提交
4661ca5f15
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Kernel/FileSystem/Ext2FileSystem.cpp

+ 2 - 2
Kernel/FileSystem/Ext2FileSystem.cpp

@@ -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 {};
     }));