Fix range check error inside tsuperregisterworklist.addnodup method

This commit is contained in:
Pierre Muller 2025-03-21 09:11:08 +00:00
parent 310069221a
commit e1478e27b3

View File

@ -595,7 +595,7 @@ implementation
begin
addnodup := false;
if indexword(buf[0],length,s) = -1 then
if (length=0) or (indexword(buf[0],length,s) = -1) then
begin
add(s);
addnodup := true;