* Additional fix for GetDelimitedText

git-svn-id: trunk@46715 -
This commit is contained in:
michael 2020-08-27 07:35:51 +00:00
parent 250c0750a2
commit df9cea5cc4

View File

@ -249,7 +249,7 @@ begin
Result:=Result+Delimiter;
end;
// Quote empty string:
If (Length(Result)=0) and (Count=1) then
If (Length(Result)=0) and (Count=1) and (QuoteChar<>#0) then
Result:=QuoteChar+QuoteChar;
end;