in reply to Re^2: XML::LibXML out of memory
in thread XML::LibXML out of memory
while ($reader->nextPatternMatch($entry_pattern) && $reader->nodeType == XML_READER_TYPE_ELEMENT ) {
or, if more than one termEntry is expected,
while ($reader->nextPatternMatch($entry_pattern)) { if ($reader->nodeType == XML_READER_TYPE_ELEMENT) { ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: XML::LibXML out of memory
by Anonymous Monk on Mar 24, 2022 at 13:49 UTC |