Project

Profile

Help

Bug #2177

closed

NullPointerException with literal FilterExpression

Added by Michael Kay over 9 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
XPath conformance
Sprint/Milestone:
Start date:
2014-10-13
Due date:
% Done:

100%

Estimated time:
Legacy ID:
Applies to branch:
9.6
Fix Committed on Branch:
9.6
Fixed in Maintenance Release:
Platforms:

Description

If a filter expression after optimization reduces to something like (1 to 20)[89], where both operands are literals and the index is out of range for the length of the sequence, a NullPointerException occurs rather than returning the empty sequence.

Problem code is at line 1121 in FilterExpression.iterate()

return ((Literal)base).getValue().itemAt(pos - 1).iterate();

where itemAt() can return null.

There is also another instance a few lines earlier where the base expression is a variable reference.

Please register to edit this issue

Also available in: Atom PDF