mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
Kernel: Make PerformanceEventBuffer creation API OOM safe
This commit is contained in:
parent
8fc6168f21
commit
ab63449ab7
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ OwnPtr<PerformanceEventBuffer> PerformanceEventBuffer::try_create_with_size(size
|
|||
auto buffer = KBuffer::try_create_with_size(buffer_size, Region::Access::Read | Region::Access::Write, "Performance events", AllocationStrategy::AllocateNow);
|
||||
if (!buffer)
|
||||
return {};
|
||||
return adopt_own(*new PerformanceEventBuffer(buffer.release_nonnull()));
|
||||
return adopt_own_if_nonnull(new PerformanceEventBuffer(buffer.release_nonnull()));
|
||||
}
|
||||
|
||||
void PerformanceEventBuffer::add_process(const Process& process, ProcessEventType event_type)
|
||||
|
|
Loading…
Reference in a new issue