mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 18:09:31 +02:00
rtl/amiga: fixed the FileInfoBlock copy to the Anchor chain which broke recently with the alignment fixes
This commit is contained in:
parent
3608be8f13
commit
50572fda8c
@ -338,7 +338,7 @@ begin
|
|||||||
NChain^.an_Parent := Pointer(Anchor);
|
NChain^.an_Parent := Pointer(Anchor);
|
||||||
end;
|
end;
|
||||||
// copy the fileinfoblock into the chain
|
// copy the fileinfoblock into the chain
|
||||||
Move(fib, NChain^.an_Info, SizeOf(TFileInfoBlock));
|
Move(fib^, NChain^.an_Info, SizeOf(TFileInfoBlock));
|
||||||
end;
|
end;
|
||||||
until Res = 0; // useless... we jump out earlier
|
until Res = 0; // useless... we jump out earlier
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user