https://bugs.winehq.org/show_bug.cgi?id=38350
Damjan Jovanovic damjan.jov@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |damjan.jov@gmail.com
--- Comment #11 from Damjan Jovanovic damjan.jov@gmail.com --- Still happens in Wine 7.14.
The "Out of memory" error is from domelem_get_item() line 1837:
---snip--- 1834 curr = xmlNewNsProp(NULL, xmlns, ns->prefix, ns->href); 1835 if (!curr) { 1836 xmlFreeNs(xmlns); 1837 return E_OUTOFMEMORY; 1838 } ---snip---
I think xmlNewNsProp() fails because ns->prefix == NULL.