Author: Armin Rigo <[email protected]>
Branch: shadowstack-issue2722
Changeset: r96576:82825fc607bb
Date: 2019-05-08 14:32 +0200
http://bitbucket.org/pypy/pypy/changeset/82825fc607bb/
Log: fix
diff --git a/rpython/memory/gctransform/shadowstack.py
b/rpython/memory/gctransform/shadowstack.py
--- a/rpython/memory/gctransform/shadowstack.py
+++ b/rpython/memory/gctransform/shadowstack.py
@@ -368,7 +368,7 @@
for ssref in self.gcdata.thread_stacks.values():
if ssref.base:
used = ssref.top - ssref.base
- addr = self._resize(base, used, new_depth)
+ addr = self._resize(ssref.base, used, new_depth)
ssref.base = addr
ssref.top = addr + used
_resize_thread_shadowstacks._dont_inline_ = True
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit