Re: segmentation fault under mod_perl+XML::XPath

2003-07-14 Thread Ruslan U. Zakirov
Hello, Ged and other. Thanks for long suggestion letter. I've solved my problem with mod_perl compiled staticaly. GH> Hi there, GH> Haven't seen any replies, so I thought you'd like to hear from someone. :) Thanks... GH> On Wed, 2 Jul 2003, Ruslan U. Zakirov wrote: >> I've tried to use XML

segmentation fault under mod_perl+XML::XPath

2003-07-05 Thread Ruslan U. Zakirov
Hello. I've tried to use XML::XPath under mod_perl 1.27 and Apache 1.3.27, but got segmentation fault with this peace of code: use XML::XPath; my $mfname='/proj/optolink/html/.meta.xml'; my $xp = XML::XPath->new(filename => $mfname); my $ns = $xp->find('//[EMAIL PROTECTED]"yes"]'); ___

Re: segmentation fault under mod_perl+XML::XPath

2003-07-02 Thread Ged Haywood
Hello again, On Thu, 3 Jul 2003, Ged Haywood wrote: > There's nothing else in that function that would be likely to cause the > fault, if pool were invalid I'd expect it to happen in poolAppendChar(). Of course unless poolAppendChar() turns out to be a function defined by a macro, which it does,

Re: segmentation fault under mod_perl+XML::XPath

2003-07-02 Thread Ged Haywood
Hi there, Haven't seen any replies, so I thought you'd like to hear from someone. :) On Wed, 2 Jul 2003, Ruslan U. Zakirov wrote: > I've tried to use XML::XPath under mod_perl 1.27 and Apache 1.3.27, but > got segmentation fault It's not uncommon to see XML and segfaults in the same post. :( H

segmentation fault under mod_perl+XML::XPath

2003-07-02 Thread Ruslan U. Zakirov
Hello. I've tried to use XML::XPath under mod_perl 1.27 and Apache 1.3.27, but got segmentation fault with this peace of code: use XML::XPath; my $mfname='/proj/optolink/html/.meta.xml'; my $xp = XML::XPath->new(filename => $mfname); my $ns = $xp->find('//[EMAIL PROTECTED]"yes"]'); Under