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 2006/02/08 17:58:07 UTC

svn commit: r375992 - /xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp

Author: dbertoni
Date: Wed Feb  8 08:58:04 2006
New Revision: 375992

URL: http://svn.apache.org/viewcvs?rev=375992&view=rev
Log:
Fix for Jira issue XALANC-604.

Modified:
    xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp

Modified: xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp
URL: http://svn.apache.org/viewcvs/xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp?rev=375992&r1=375991&r2=375992&view=diff
==============================================================================
--- xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp (original)
+++ xalan/c/trunk/src/xalanc/Include/XalanMemoryManagement.hpp Wed Feb  8 08:58:04 2006
@@ -433,7 +433,7 @@
 
     static C* construct(C* address, MemoryManager& /* mgr */)
     {
-        return (C*) new (address) C;
+        return (C*) new (address) C();
     }
 
     static C* construct(C* address, const C& theRhs, MemoryManager& /* mgr */)



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