On Tue, 27 Jun 2006 14:14:05 +0100, Pedro Côrte-Real <[EMAIL PROTECTED]>
wrote:
> I'm trying to use libxml to run some XPath on a document I have as a
> string in memory. This is my code for parsing the document:
>
> parser = XML::Parser.new
> parser.string = self.content
> @xmldoc = parser.pars
I'm trying to use libxml to run some XPath on a document I have as a
string in memory. This is my code for parsing the document:
parser = XML::Parser.new
parser.string = self.content
@xmldoc = parser.parse
Doing the same thing in a test script seems to work without
segfaulting. This is run insid