diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2026-06-20-14-00-00.gh-issue-151815.TmplIt.rst b/Misc/NEWS.d/next/Core_and_Builtins/2026-06-20-14-00-00.gh-issue-151815.TmplIt.rst new file mode 100644 index 00000000000000..07c53738ef0402 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2026-06-20-14-00-00.gh-issue-151815.TmplIt.rst @@ -0,0 +1,2 @@ +Fix segfault in t-string iterator deallocation when :c:func:`PyObject_GetIter` +fails during construction, caused by ``Py_CLEAR`` on uninitialized pointers. diff --git a/Objects/templateobject.c b/Objects/templateobject.c index 1609e82b444516..994b352d7dcd63 100644 --- a/Objects/templateobject.c +++ b/Objects/templateobject.c @@ -226,6 +226,8 @@ template_iter(PyObject *op) if (iter == NULL) { return NULL; } + iter->stringsiter = NULL; + iter->interpolationsiter = NULL; PyObject *stringsiter = PyObject_GetIter(self->strings); if (stringsiter == NULL) {