mirror of https://gitlab.com/basile.b/dexed.git
fix infinite loop in expandSymString
This commit is contained in:
parent
6a20a971a4
commit
1a6b840a29
|
@ -1863,6 +1863,9 @@ var
|
||||||
begs, ends: boolean;
|
begs, ends: boolean;
|
||||||
i: integer;
|
i: integer;
|
||||||
begin
|
begin
|
||||||
|
if symString = '' then
|
||||||
|
exit(symString);
|
||||||
|
|
||||||
result := '';
|
result := '';
|
||||||
elems := TStringList.Create;
|
elems := TStringList.Create;
|
||||||
try
|
try
|
||||||
|
|
Loading…
Reference in New Issue