* Merging revisions 42979 from trunk:

------------------------------------------------------------------------
    r42979 | michael | 2019-09-13 18:20:59 +0200 (Fri, 13 Sep 2019) | 1 line
    
    * Fix uninitialized var warning
    ------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@43256 -
This commit is contained in:
michael 2019-10-19 14:46:59 +00:00
parent 9acb68ee32
commit b1347be8f7

View File

@ -433,6 +433,7 @@ var
begin
l := Length(S);
if l=0 then exit;
Result:='';
SetLength(Result, l);
P:=PChar(Result);
i:=1;