mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #24098: Fixed possible crash when AST is changed in process of
compiling it.
This commit is contained in:
parent
36e7e97d62
commit
cf3806026b
3 changed files with 226 additions and 0 deletions
|
@ -526,6 +526,13 @@ class Obj2ModVisitor(PickleVisitor):
|
|||
self.emit("res = obj2ast_%s(PyList_GET_ITEM(tmp, i), &value, arena);" %
|
||||
field.type, depth+2, reflow=False)
|
||||
self.emit("if (res != 0) goto failed;", depth+2)
|
||||
self.emit("if (len != PyList_GET_SIZE(tmp)) {", depth+2)
|
||||
self.emit("PyErr_SetString(PyExc_RuntimeError, \"%s field \\\"%s\\\" "
|
||||
"changed size during iteration\");" %
|
||||
(name, field.name),
|
||||
depth+3, reflow=False)
|
||||
self.emit("goto failed;", depth+3)
|
||||
self.emit("}", depth+2)
|
||||
self.emit("asdl_seq_SET(%s, i, value);" % field.name, depth+2)
|
||||
self.emit("}", depth+1)
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue