Coleen spotted the following in the fix for 8019835:
src/share/vm/classfile/symbolTable.cpp:
918 int StringTable::verify_and_compare_entries() {
<snip>
958 int e_cnt2;
959 for (e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) {
It should be:
for (int e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) {
src/share/vm/classfile/symbolTable.cpp:
918 int StringTable::verify_and_compare_entries() {
<snip>
958 int e_cnt2;
959 for (e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) {
It should be:
for (int e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) {