mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
Kernel: Stop using the make<T> factory method in the Kernel
As make<T> is infallible, it really should not be used anywhere in the Kernel. Instead replace with fallible `new (nothrow)` calls, that will eventually be error-propagated.
This commit is contained in:
parent
e5e7cb822a
commit
8289727fac
Notes:
sideshowbarker
2024-07-17 19:49:48 +09:00
Author: https://github.com/IdanHo
Commit: 8289727fac
Pull-request: https://github.com/SerenityOS/serenity/pull/12275
6 changed files with 7 additions and 7 deletions
|
@ -17,7 +17,7 @@ namespace Kernel {
|
|||
|
||||
Result<NonnullOwnPtr<MBRPartitionTable>, PartitionTable::Error> MBRPartitionTable::try_to_initialize(const StorageDevice& device)
|
||||
{
|
||||
auto table = make<MBRPartitionTable>(device);
|
||||
auto table = adopt_nonnull_own_or_enomem(new (nothrow) MBRPartitionTable(device)).release_value_but_fixme_should_propagate_errors();
|
||||
if (table->contains_ebr())
|
||||
return { PartitionTable::Error::ContainsEBR };
|
||||
if (table->is_protective_mbr())
|
||||
|
@ -29,7 +29,7 @@ Result<NonnullOwnPtr<MBRPartitionTable>, PartitionTable::Error> MBRPartitionTabl
|
|||
|
||||
OwnPtr<MBRPartitionTable> MBRPartitionTable::try_to_initialize(const StorageDevice& device, u32 start_lba)
|
||||
{
|
||||
auto table = make<MBRPartitionTable>(device, start_lba);
|
||||
auto table = adopt_nonnull_own_or_enomem(new (nothrow) MBRPartitionTable(device, start_lba)).release_value_but_fixme_should_propagate_errors();
|
||||
if (!table->is_valid())
|
||||
return {};
|
||||
return table;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue