[pypy-commit] pypy default: Fix for revdb (how to test??)

arigo pypy.commits at gmail.com
Wed Jan 30 18:42:42 EST 2019


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r95754:04dfff1c783a
Date: 2019-01-31 00:42 +0100
http://bitbucket.org/pypy/pypy/changeset/04dfff1c783a/

Log:	Fix for revdb (how to test??)

diff --git a/rpython/rlib/src/boehm-rawrefcount.c b/rpython/rlib/src/boehm-rawrefcount.c
--- a/rpython/rlib/src/boehm-rawrefcount.c
+++ b/rpython/rlib/src/boehm-rawrefcount.c
@@ -191,6 +191,7 @@
 #endif
                 assert(result->ob_refcnt == REFCNT_FROM_PYPY);
                 result->ob_refcnt = 1;
+                result->ob_pypy_link = 0;
                 p->pyobj = NULL;
                 *pp = p->next_in_bucket;
                 p->next_in_bucket = hash_free_list;


More information about the pypy-commit mailing list