[
https://issues.apache.org/jira/browse/JCR-2967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jukka Zitting updated JCR-2967:
-------------------------------
Fix Version/s: (was: 2.3.0)
2.2.9
2.1.6
2.0.4
Merged to the 2.2 branch in revision 1174762, to 2.1 in 1174764, and to 2.0 in
1174772.
> SessionItemStateManager.getIdOfRootTransientNodeState() may cause NPE
> ---------------------------------------------------------------------
>
> Key: JCR-2967
> URL: https://issues.apache.org/jira/browse/JCR-2967
> Project: Jackrabbit Content Repository
> Issue Type: Bug
> Components: jackrabbit-core
> Affects Versions: 2.0.0, 2.0.3, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0, 2.2.1,
> 2.2.2, 2.2.4, 2.2.5
> Reporter: Stefan Guggisberg
> Assignee: Stefan Guggisberg
> Fix For: 2.0.4, 2.1.6, 2.2.9
>
>
> regression of JCR-2425
> in certain scenarios, calling
> SessionItemStateManager.getIdOfRootTransientNodeState() may cause a NPE.
> Test case:
> Repository repository = new TransientRepository();
> Session session = repository.login(
> new SimpleCredentials("admin", "admin".toCharArray()));
> Session session2 = repository.login(
> new SimpleCredentials("admin", "admin".toCharArray()));
> try {
> while (session.getRootNode().hasNode("test")) {
> session.getRootNode().getNode("test").remove();
> }
> Node test = session.getRootNode().addNode("test");
> session.save();
> Node x = test.addNode("x");
> session.save();
> Node x2 = session2.getRootNode().getNode("test").getNode("x");
> x2.remove();
> x.addNode("b");
> session2.save();
> session.save(); // throws NPE
> } finally {
> session.logout();
> session2.logout();
> }
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira