Hi David,

Can you create a Bugzilla report and zip up the source file, and a sample
input source document and stylesheet and attach it to the report?  That
way,  we have everything we need to reproduce the problem.

By the way, are you sure you're using Xalan 1.5?  I don't believe it
compiled properly with Xerces-C 2.3.  Did you make some changes locally to
fix the compilation error?

Thanks!

Dave



                                                                                
                                                                  
                      "David Fishburn"                                          
                                                                  
                      <[EMAIL PROTECTED]         To:      
<[email protected]>                                                  
          
                      ere.com>                 cc:      (bcc: David N 
Bertoni/Cambridge/IBM)                                                      
                                               Subject: Xerces memory error - 
assertion                                                           
                      09/12/2003 09:14                                          
                                                                  
                      AM                                                        
                                                                  
                                                                                
                                                                  




Xalan 1.5
Xerces 2.3.0
WinXP
VC6 (so service packs I believe).

I built a DLL and under a debug compile I can run it for extended
periods without problems.
As soon as I build a Release version, it always crashes after 5 or 6
runs.
The DLL was also using an API that my company provides.
So I have tried to narrow down the problem into a simple program that
was copied (initially) from the StreamTransform sample.

Now, when I run this with the following XML and XSL:
    char * xml_str =  "<?xml version=\"1.0\"?>\
        <doc>Hello</doc>";

    char * xsl_str = "<?xml version=\"1.0\"?>\
        <xsl:stylesheet
xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"; version=\"1.0\">\
        <xsl:template match=\"doc\">\
        <out><xsl:value-of select=\".\"/></out>\
        </xsl:template>\
        </xsl:stylesheet>";

...

Reply via email to