GP-3508 Fix for calcHash methods 5 and 6

This commit is contained in:
caheckman 2023-05-30 15:39:19 -04:00
parent aa2ac78dc3
commit 050d3018c8
2 changed files with 10 additions and 0 deletions

View file

@ -294,6 +294,9 @@ public class DynamicHash {
buildOpUp(markop.get(opproc));
}
gatherUnmarkedVn();
for (; vnproc < markvn.size(); ++vnproc) {
buildVnUp(markvn.get(vnproc));
}
break;
case 6:
gatherUnmarkedOp();
@ -301,6 +304,9 @@ public class DynamicHash {
buildOpDown(markop.get(opproc));
}
gatherUnmarkedVn();
for (; vnproc < markvn.size(); ++vnproc) {
buildVnDown(markvn.get(vnproc));
}
break;
default:
break;