minor code cleanup in fix for 8019835

XMLWordPrintable

    • Type: Enhancement
    • Resolution: Won't Fix
    • Priority: P5
    • 9
    • Affects Version/s: hs25
    • Component/s: hotspot
    • generic
    • generic

      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++) {

            Assignee:
            Daniel Daugherty
            Reporter:
            Daniel Daugherty
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: