[pypy-svn] r28900 - pypy/dist/pypy/rpython/memory

pedronis at codespeak.net pedronis at codespeak.net
Fri Jun 16 23:01:18 CEST 2006


Author: pedronis
Date: Fri Jun 16 23:01:15 2006
New Revision: 28900

Modified:
   pypy/dist/pypy/rpython/memory/gc.py
Log:
this one ovfcheck was overzeleaous



Modified: pypy/dist/pypy/rpython/memory/gc.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/gc.py	(original)
+++ pypy/dist/pypy/rpython/memory/gc.py	Fri Jun 16 23:01:15 2006
@@ -173,7 +173,7 @@
             self.collect()
         size_gc_header = self.gcheaderbuilder.size_gc_header
         try:
-            tot_size = ovfcheck(size_gc_header + size)
+            tot_size = size_gc_header + size
             usage = raw_malloc_usage(tot_size)
             bytes_malloced = ovfcheck(self.bytes_malloced+usage)
             ovfcheck(self.heap_usage + bytes_malloced)



More information about the Pypy-commit mailing list