mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
Kernel: Tidy up Ext2FS construction a bit
This commit is contained in:
Notes:
sideshowbarker
2024-07-18 04:37:32 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/36725228fa9
@@ -54,9 +54,9 @@ static unsigned divide_rounded_up(unsigned a, unsigned b)
|
||||
return (a / b) + (a % b != 0);
|
||||
}
|
||||
|
||||
NonnullRefPtr<Ext2FS> Ext2FS::create(FileDescription& file_description)
|
||||
KResultOr<NonnullRefPtr<Ext2FS>> Ext2FS::try_create(FileDescription& file_description)
|
||||
{
|
||||
return adopt_ref(*new Ext2FS(file_description));
|
||||
return adopt_nonnull_ref_or_enomem(new (nothrow) Ext2FS(file_description));
|
||||
}
|
||||
|
||||
Ext2FS::Ext2FS(FileDescription& file_description)
|
||||
|
||||
Reference in New Issue
Block a user