mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 22:09:28 +02:00
* more unaligned fixes for xmlread. Mantis 12137
git-svn-id: trunk@11759 -
This commit is contained in:
parent
a696344539
commit
e7c43e55c5
@ -2982,9 +2982,9 @@ begin
|
||||
Inc(FNesting);
|
||||
if FNesting >= Length(FValidator) then
|
||||
SetLength(FValidator, FNesting * 2);
|
||||
FValidator[FNesting].FElementDef := aElDef;
|
||||
FValidator[FNesting].FCurCP := nil;
|
||||
FValidator[FNesting].FFailed := False;
|
||||
unaligned(FValidator[FNesting].FElementDef) := aElDef;
|
||||
unaligned(FValidator[FNesting].FCurCP) := nil;
|
||||
unaligned(FValidator[FNesting].FFailed) := False;
|
||||
UpdateConstraints;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user