This commit is contained in:
Pavel 2024-05-22 11:04:54 +03:00
parent 4ab8a7069c
commit bd0f0cc852
1 changed files with 5 additions and 1 deletions

View File

@ -665,7 +665,11 @@ begin
if (Node=nil) then Exit(EBUSY);
Flip:=FFlipAlloc.Alloc;
if (Flip=nil) then Exit(EBUSY);
if (Flip=nil) then
begin
FSubmitAlloc.Free(Node);
Exit(EBUSY);
end;
Node^.submit:=submit^;
Node^.tsc :=rdtsc();