[3.14] gh-147998: Fix possible memory leak in _pop_preserved (crossinterp.c) (GH-147999) (GH-149365)

(cherry picked from commit 72f29dc704)

Co-authored-by: Maurycy Pawłowski-Wieroński <maurycy@maurycy.com>
This commit is contained in:
Miss Islington (bot) 2026-05-04 16:11:04 +02:00 committed by GitHub
parent 95979d1813
commit fc390bdcee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -0,0 +1,3 @@
Fixed a memory leak in interpreter helper calls so cleanup works when an
operation falls across interpreter boundaries. Patch by Maurycy
Pawłowski-Wieroński.

View file

@ -2965,7 +2965,7 @@ _pop_preserved(_PyXI_session *session,
*p_xidata = NULL;
}
else {
_PyXI_namespace *xidata = _create_sharedns(session->_preserved);
xidata = _create_sharedns(session->_preserved);
if (xidata == NULL) {
failure.code = _PyXI_ERR_PRESERVE_FAILURE;
goto error;