mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 15:29:25 +02:00
fixed bug: xsdTryNextString returned allways true
git-svn-id: trunk@12937 -
This commit is contained in:
parent
e9928658b5
commit
819e7d0913
@ -495,7 +495,7 @@ end;
|
||||
function xsdTryParseString(Chars: xmlCharPtr; out Value: String): Boolean;
|
||||
begin
|
||||
Value := PChar(Chars);
|
||||
Result := True;
|
||||
Result := Assigned(Chars);
|
||||
end;
|
||||
|
||||
function xsdTryParseBoolean(Chars: xmlCharPtr; out Value: Boolean): Boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user