Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8025038

minor code cleanup in fix for 8019835

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P5 P5
    • 9
    • hs25
    • 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++) {

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

              Created:
              Updated:
              Resolved: