You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Pepijn Van Eeckhoudt (JIRA)" <xe...@xml.apache.org> on 2007/08/02 17:30:53 UTC

[jira] Updated: (XERCESJ-1261) NullPointerException in org.xml.sax.ext.Attributes2Impl#addAttribute

     [ https://issues.apache.org/jira/browse/XERCESJ-1261?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pepijn Van Eeckhoudt updated XERCESJ-1261:
------------------------------------------

    Description: 
The following code generates a NullPointerException

new org.xml.sax.ext.Attributes2Impl().addAttribute("","","","","");

This is caused by the check of getLength against specified.length. After the constructor is called the specified and declared arrays are null. Adding a null check would resolve this problem.

  was:
The following code generates a NullPointerException

new org.xml.sax.ext.Attributes2Impl().addAttribute("","","","","");

This is caused by the check of getLength against specified.length. After the constructor is called the specified and declared arrays are null. Initializing both
to new boolean[0] would resolve this problem.


> NullPointerException in org.xml.sax.ext.Attributes2Impl#addAttribute
> --------------------------------------------------------------------
>
>                 Key: XERCESJ-1261
>                 URL: https://issues.apache.org/jira/browse/XERCESJ-1261
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: SAX
>    Affects Versions: 2.9.0
>         Environment: Any
>            Reporter: Pepijn Van Eeckhoudt
>
> The following code generates a NullPointerException
> new org.xml.sax.ext.Attributes2Impl().addAttribute("","","","","");
> This is caused by the check of getLength against specified.length. After the constructor is called the specified and declared arrays are null. Adding a null check would resolve this problem.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: j-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: j-dev-help@xerces.apache.org