You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by jd...@locus.apache.org on 2000/04/14 17:41:18 UTC

cvs commit: xml-xalan/c/src/XSLT XSLTEngineImpl.hpp

jdonohue    00/04/14 08:41:18

  Modified:    c/src/XSLT XSLTEngineImpl.hpp
  Log:
  Commented out delete of newed stack params
  
  Revision  Changes    Path
  1.23      +3 -0      xml-xalan/c/src/XSLT/XSLTEngineImpl.hpp
  
  Index: XSLTEngineImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.hpp,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- XSLTEngineImpl.hpp	2000/04/12 19:41:03	1.22
  +++ XSLTEngineImpl.hpp	2000/04/14 15:41:18	1.23
  @@ -1710,8 +1710,11 @@
   				m_currentStackFrameIndex-=1;
   			StackEntry* theEntry = m_stack.back();
   			m_stack.pop_back();
  +			// @@ JMD: This should work, but seems to be causing problems ...
  +			/*
   			if (m_isNew.back() == true)
   				delete theEntry;
  +			*/
   			m_isNew.pop_back();
   		}