[pypy-svn] r31728 - pypy/branch/no-zeroing-assumption/pypy/translator/c/src

mwh at codespeak.net mwh at codespeak.net
Sun Aug 27 15:13:07 CEST 2006


Author: mwh
Date: Sun Aug 27 15:13:05 2006
New Revision: 31728

Modified:
   pypy/branch/no-zeroing-assumption/pypy/translator/c/src/mem.h
Log:
so, er, we still need to zero fill memory.
oops.


Modified: pypy/branch/no-zeroing-assumption/pypy/translator/c/src/mem.h
==============================================================================
--- pypy/branch/no-zeroing-assumption/pypy/translator/c/src/mem.h	(original)
+++ pypy/branch/no-zeroing-assumption/pypy/translator/c/src/mem.h	Sun Aug 27 15:13:05 2006
@@ -2,7 +2,7 @@
 /************************************************************/
  /***  C header subsection: operations on LowLevelTypes    ***/
 
-#define RAW_MALLOC_ZERO_FILLED 0
+#define RAW_MALLOC_ZERO_FILLED 1
 
 #if RAW_MALLOC_ZERO_FILLED
 



More information about the Pypy-commit mailing list