Author: Armin Rigo <[email protected]>
Branch: stacklet
Changeset: r46371:2920f0ba771c
Date: 2011-08-08 15:04 +0000
http://bitbucket.org/pypy/pypy/changeset/2920f0ba771c/

Log:    Fix.

diff --git a/pypy/rlib/_stacklet_asmgcc.py b/pypy/rlib/_stacklet_asmgcc.py
--- a/pypy/rlib/_stacklet_asmgcc.py
+++ b/pypy/rlib/_stacklet_asmgcc.py
@@ -264,10 +264,8 @@
 
     def destroy(self, thrd, suspstack):
         h = suspstack.handle
-        a = suspstack.anchor
         suspstack.handle = _c.null_handle
         _c.destroy(thrd, h)
-        lltype.free(a, flavor='raw')
 
     def is_empty_handle(self, suspstack):
         return not suspstack
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to