dictionary insert stage count bugfix

This commit is contained in:
van Hauser
2020-02-11 11:32:20 +01:00
parent 3b9ac30efa
commit 5571142e25
2 changed files with 3 additions and 2 deletions

View File

@ -1474,7 +1474,7 @@ skip_interest:
stage_name = "user extras (insert)";
stage_short = "ext_UI";
stage_cur = 0;
stage_max = extras_cnt * len;
stage_max = extras_cnt * (len + 1);
orig_hit_cnt = new_hit_cnt;
@ -3492,7 +3492,7 @@ skip_interest:
stage_name = "user extras (insert)";
stage_short = "ext_UI";
stage_cur = 0;
stage_max = extras_cnt * len;
stage_max = extras_cnt * (len + 1);
orig_hit_cnt = new_hit_cnt;