NativeXml: Failed to parse attribute if there are more than one whitespace beyond
Brought to you by:
mellobot
Originally created by: sx.a...@googlemail.com
Failed to open an xml file, if it contains such a node `<language ui="english"/>`
At NativeXml.pas line 4601
WhiteSpaceNode := TsdWhiteSpace.Create(TNativeXml(FOwner));
NodeAdd(WhiteSpaceNode);
inc(FDirectNodeCount);
WhiteSpaceNode.SetCoreValue(Blanks);
I changed it to:
WhiteSpaceNode := TsdWhiteSpace.Create(TNativeXml(FOwner));
FDirectNodeCount := NodeAdd(WhiteSpaceNode);
//inc(FDirectNodeCount);
WhiteSpaceNode.SetCoreValue(Blanks);
Please confirm.