Oops!  I'll fix those right away!  Fortunately, that only affects AIX on
the old compiler, so I think it's no longer a big issue.

Thanks,

Dave



                                                                                
                                                                  
                      Wolfgang Schell                                           
                                                                  
                      <wolfgang.schell         To:      
[email protected]                                                    
          
                      @gmx.de>                 cc:      (bcc: David N 
Bertoni/Cambridge/IBM)                                                      
                                               Subject: Minor bugs              
                                                                  
                      03/26/2002 01:09                                          
                                                                  
                      PM                                                        
                                                                  
                                                                                
                                                                  
                                                                                
                                                                  



Hi!

I found two minor bugs I'd like to share with you :-)

(Sorry, no diff format :-( )

in samples/XPathWrapper/XPathWrapper.cpp, around line 234 (might have
changed):

// Shut down Xerces...
XMLPlatformUtils::Initialize();


Looks like it should have been

// Shut down Xerces...
XMLPlatformUtils::Terminate();


and the other one (probably copy/paste mistake):
in src/XalanTransformer/XalanTransformer.cpp in function
XalanTransformer::destroyParsedSource():

#if defined(XALAN_CANNOT_DELETE_CONST)
                         delete (XalanCompiledStylesheet*) theParsedSource;
#else
                         delete theParsedSource;
#endif


Looks like it should have been

#if defined(XALAN_CANNOT_DELETE_CONST)
                         delete (XalanParsedSource*) theParsedSource;
#else
                         delete theParsedSource;
#endif


Cheers,

Wolfgang

--
Wolfgang Schell
[EMAIL PROTECTED]

GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net






  • Minor bugs Wolfgang Schell
    • David N Bertoni/Cambridge/IBM

Reply via email to