Actions
Bug #5343
closedError found when converting array of XdmValue to XdmArray
Start date:
2022-02-21
Due date:
% Done:
100%
Estimated time:
Applies to branch:
Fix Committed on Branch:
Fixed in Maintenance Release:
Found in version:
11.2
Fixed in version:
11.3
SaxonC Languages:
SaxonC Platforms:
SaxonC Architecture:
Description
Reported by user here: https://saxonica.plan.io/boards/4/topics/8573
The simple python script which creates a PyXdmArray object:
from saxonc import *
with PySaxonProcessor(license=False) as proc:
print("Test SaxonC on Python")
print(proc.version)
xdm_value = PyXdmValue()
for i in range(1, 6):
xdm_value.add_xdm_item(proc.make_array([proc.make_integer_value(n) for n in range(1, i)]))
print(isinstance(xdm_value, PyXdmValue))
print(xdm_value)
for item in xdm_value:
print(isinstance(item, PyXdmItem))
print(isinstance(item, PyXdmArray))
print(item)
Prints the following error message before SaxonC crashes:
Error found when converting array of XdmValue to XdmArray
Please register to edit this issue
Actions