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

infinite mutual loop in FontMetrics causes Stack overflow

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1
    • client-libs
    • None
    • x86, sparc
    • solaris_2.5, windows_nt



      Name: mc57594 Date: 01/27/97


      getWidths calls charWidth, which calls getWidths, and back again until the stack is hammered.
      This is code from java.awt.FontMetrics.java v. 1.14: (comments mine)

          public int charWidth(char ch) { if (ch < 256) { return getWidths()[ch]; // YOW! } char data[] = {ch}; return charsWidth(data, 0, 1); }
          public int[] getWidths() { int widths[] = new int[256]; for (char ch = 0 ; ch < 256 ; ch++) { widths[ch] = charWidth(ch); // Whoops! } return widths; }
      ======================================================================

            flar Jim Graham
            mchamnessunw Mark Chamness (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: