Re: [libxml-devel] Segfault when doing simple parsing

2006-08-15 Thread Ross Bamford
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

[libxml-devel] Segfault when doing simple parsing

2006-06-27 Thread Pedro Côrte-Real
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