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);
}
Please register to edit this issue
Actions