* Patch from Andrey Zubarev to fix uninitialized result in EncodeURLElement (Bug ID 32409)

git-svn-id: trunk@37196 -
This commit is contained in:
michael 2017-09-12 20:05:06 +00:00
parent 0fae0cb389
commit ea1677f244

View File

@ -383,6 +383,7 @@ var
P : PChar;
c: AnsiChar;
begin
result:='';
l:=Length(S);
If (l=0) then Exit;
SetLength(Result,l*3);