mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 16:09:23 +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);
|
Inc(FNesting);
|
||||||
if FNesting >= Length(FValidator) then
|
if FNesting >= Length(FValidator) then
|
||||||
SetLength(FValidator, FNesting * 2);
|
SetLength(FValidator, FNesting * 2);
|
||||||
FValidator[FNesting].FElementDef := aElDef;
|
unaligned(FValidator[FNesting].FElementDef) := aElDef;
|
||||||
FValidator[FNesting].FCurCP := nil;
|
unaligned(FValidator[FNesting].FCurCP) := nil;
|
||||||
FValidator[FNesting].FFailed := False;
|
unaligned(FValidator[FNesting].FFailed) := False;
|
||||||
UpdateConstraints;
|
UpdateConstraints;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user