in reply to Re^5: XML::LibXML memory leak
in thread XML::LibXML memory leak

Yes, absolutely! All I need is the data...

That's what I thought that I was doing with:

$av = $cve_xc->find('cvss:access-vector', $metrics);

Replies are listed 'Best First'.
Re^7: XML::LibXML memory leak
by ikegami (Patriarch) on Dec 08, 2010 at 20:56 UTC

    Ah oops, I thought you were using ->findnodes.

    The only possible things that could match are: 0 elements, 1 element, or multiple elements. I never use ->find, so I don't know what it returns in each of those circumstances, and whether any of those are connected to the document.

      If I were to use ->findnodes how would I go about just extracting the data?

        What data do you want to extract from each element? ->textValue?