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 2002/03/07 05:00:57 UTC

cvs commit: xml-xalan/c/src/PlatformSupport ArenaBlock.hpp

dbertoni    02/03/06 20:00:57

  Modified:    c/src/PlatformSupport ArenaBlock.hpp
  Log:
  Fixed call to std::allocator::deallocate().  Fixes bug 6916.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-xalan/c/src/PlatformSupport/ArenaBlock.hpp
  
  Index: ArenaBlock.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/ArenaBlock.hpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- ArenaBlock.hpp	13 Dec 2001 17:21:30 -0000	1.13
  +++ ArenaBlock.hpp	7 Mar 2002 04:00:57 -0000	1.14
  @@ -177,7 +177,7 @@
   		destroyAll();
   
   		// Release the memory...
  -		m_allocator.deallocate(m_objectBlock, 0);
  +		m_allocator.deallocate(m_objectBlock, m_blockSize);
   	}
   
   	/*
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org