Actions
Bug #3597
closedXdmValue::getUnderlyingValue does not return a value
Start date:
2018-01-04
Due date:
% Done:
100%
Estimated time:
0:06 h
Applies to branch:
Fix Committed on Branch:
Fixed in Maintenance Release:
Found in version:
1.1.0
Fixed in version:
1.1.2
SaxonC Languages:
SaxonC Platforms:
SaxonC Architecture:
Description
At XdmNode.h:74 the inline function definition of
jobject getUnderlyingValue(SaxonProcessor * proc) {
XdmItem::getUnderlyingValue(proc);
}
is missing the return statement; it should read:
jobject getUnderlyingValue(SaxonProcessor * proc) {
return XdmItem::getUnderlyingValue(proc);
}
Updated by O'Neil Delpratt almost 7 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Thank you for spotting this bug.
This has already been fixed in svn and will be available in the next maintenance release. You can make the change in your code base when building Saxon/C locally.
Updated by O'Neil Delpratt almost 6 years ago
- Status changed from Resolved to Closed
- Fixed in version set to 1.1.2
Bug fix applied in the Saxon/C 1.1.2 maintenance release.
Please register to edit this issue
Actions