Browse Source

* xmlcfg.pp, changed 'exit' to 'break' so that function won't exit without result assigned, Mantis #18589

git-svn-id: trunk@16803 -
sergei 14 years ago
parent
commit
124487b9b2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-xml/src/xmlcfg.pp

+ 1 - 1
packages/fcl-xml/src/xmlcfg.pp

@@ -354,7 +354,7 @@ begin
       if not (s[i] in AllowedChars) then
       begin
         EscapingNecessary := True;
-	exit;
+        break;
       end;
   end;