fixed bug: xsdTryNextString returned allways true

git-svn-id: trunk@12937 -
This commit is contained in:
ivost 2009-03-21 11:34:44 +00:00
parent e9928658b5
commit 819e7d0913

View File

@ -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;