Bläddra i källkod

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 år sedan
förälder
incheckning
4661ca5f15
1 ändrade filer med 2 tillägg och 2 borttagningar
  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 {};
     }));