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

NPE in sun.font.FontConfigManager.getFontConfigFont() when libfontconfig.so is not installed

XMLWordPrintable

    • 2d
    • 7
    • b01
    • generic, x86
    • generic, linux_oracle_6.0
    • Verified

        From the 2d-dev mailing list :-
        http://mail.openjdk.java.net/pipermail/2d-dev/2011-July/002090.html

        Hi all, a problem was discovered on JDK7 when using the Nimbus L&F on a system where libfontconfig.so was not installed (On AIX actually but in theory on any unix system)

        Under the covers Nimbus uses the sun.font.FontConfigManager to retrieve fonts. sun.font.FontConfigManager in turn is intended to use (for a unix system) the libfontconfig.so system library if present.

        The code is intended to cope with the library being missing but it unfortunately doesn't. A array is referenced without checking if it is null. On systems where the system library is present this array is never null but in this specific case the array is null and the reference fails as follows.


        Exception in thread "main" java.lang.NullPointerException
        at sun.font.FontConfigManager.getFontConfigFont(FontConfigManager.java:352)
        at sun.awt.X11FontManager.getFontConfigFUIR(X11FontManager.java:817)
        at sun.font.FontUtilities.getFontConfigFUIR(FontUtilities.java:472)
        at javax.swing.plaf.nimbus.NimbusDefaults.<init>(NimbusDefaults.java:138)
        at javax.swing.plaf.nimbus.NimbusLookAndFeel.<init>(NimbusLookAndFeel.java:100)
        at Nimbus.main(Nimbus.java:6)


        The fix is trivial (see below) and probably just tactical.

        diff --git a/src/solaris/classes/sun/font/FontConfigManager.java b/src/solaris/classes/sun/font/FontConfigManager.java
        --- a/src/solaris/classes/sun/font/FontConfigManager.java
        +++ b/src/solaris/classes/sun/font/FontConfigManager.java
        @@ -348,6 +348,8 @@

                 initFontConfigFonts(false);

        + if(fontConfigFonts==null) return null; // init failed
        +
                 FcCompFont fcInfo = null;
                 for (int i=0; i<fontConfigFonts.length; i++) {
                     if (name.equals(fontConfigFonts[i].fcFamily) &&

              prr Philip Race
              prr Philip Race
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: