DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39701>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39701

           Summary: NPE in PropertyList
           Product: Fop
           Version: 0.92
          Platform: Other
        OS/Version: Windows 2000
            Status: NEW
          Severity: critical
          Priority: P2
         Component: general
        AssignedTo: fop-dev@xmlgraphics.apache.org
        ReportedBy: [EMAIL PROTECTED]


Depending on the SAX implementation (ex. xalan 2.6) the call to getURI() in
org.apache.fop.fo.PropertyList line

300: attributeNS = attributes.getURI(i); 

may return _null_ which leads to an NPE in line

301: if (attributeNS.length() == 0 || ...

worked arround easily with 

301: if (attributeNS==null || attributeNS.length() == 0 || ...

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to