* fixed bug in xsdTryParseBoolean (segfault on null string)

git-svn-id: trunk@14215 -
This commit is contained in:
ivost 2009-11-19 11:33:03 +00:00
parent 671f8a1d30
commit 6941020524

View File

@ -882,6 +882,9 @@ var
P: PChar;
Num: QWord;
begin
if not Assigned(Chars) then
Exit(False);
if Len < 0 then
begin
P := PChar(Chars);