decrease restarts_to_go only if restart is enabled (solves runtime error if compiled with range checks)

This commit is contained in:
Ondrej Pokorny 2025-03-28 10:18:39 +01:00 committed by Michael Van Canneyt
parent 0d988f2c96
commit ec5b4d458e

View File

@ -1240,7 +1240,8 @@ begin
end;
{ Account for restart interval (no-op if not using restarts) }
Dec(entropy^.restarts_to_go);
if (cinfo^.restart_interval <> 0) then
Dec(entropy^.restarts_to_go);
decode_mcu := TRUE;
end;