You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/01/12 21:45:12 UTC

cvs commit: xml-xalan/c/src/XSLT StylesheetExecutionContextDefault.cpp

dbertoni    01/01/12 12:45:12

  Modified:    c/src/XSLT StylesheetExecutionContextDefault.cpp
  Log:
  Fixed bug where m_countersTable was not reset.
  
  Revision  Changes    Path
  1.49      +2 -0      xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp
  
  Index: StylesheetExecutionContextDefault.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- StylesheetExecutionContextDefault.cpp	2001/01/08 18:29:52	1.48
  +++ StylesheetExecutionContextDefault.cpp	2001/01/12 20:45:10	1.49
  @@ -1296,6 +1296,8 @@
   
   	assert(m_matchPatternCache.size() == 0);
   
  +	m_countersTable.reset();
  +
   	// Reset the default execution context...
   	m_xpathExecutionContextDefault.reset();
   }