Kernel: Fix bogus negation of alloc_fd() error in sys$anon_create()

Thanks to Idan for spotting this!
This commit is contained in:
Andreas Kling 2021-01-15 15:13:17 +01:00
parent 12879184ce
commit a525d0271c
Notes: sideshowbarker 2024-07-18 23:51:20 +09:00

View File

@ -38,7 +38,7 @@ int Process::sys$anon_create(size_t size, int options)
int new_fd = alloc_fd();
if (new_fd < 0)
return -new_fd;
return new_fd;
auto vmobject = AnonymousVMObject::create_with_size(size, AllocationStrategy::Reserve);
if (!vmobject)