mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
Kernel: Replace bare new in Custody::create() with adopt_ref_if_nonnull
This commit is contained in:
committed by
Andreas Kling
parent
956314f0a1
commit
5dc5f31f76
@@ -22,11 +22,11 @@ class Custody : public RefCounted<Custody> {
|
||||
public:
|
||||
static KResultOr<NonnullRefPtr<Custody>> create(Custody* parent, const StringView& name, Inode& inode, int mount_flags)
|
||||
{
|
||||
auto custody = new Custody(parent, name, inode, mount_flags);
|
||||
auto custody = adopt_ref_if_nonnull(new Custody(parent, name, inode, mount_flags));
|
||||
if (!custody)
|
||||
return ENOMEM;
|
||||
|
||||
return adopt_ref(*custody);
|
||||
return custody.release_nonnull();
|
||||
}
|
||||
|
||||
~Custody();
|
||||
|
||||
Reference in New Issue
Block a user