Skip to content

Commit 13380da

Browse files
authored
GH-104584: Fix refleak when tracing through calls (GH-110593)
1 parent d5ec77f commit 13380da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix a reference leak when running with :envvar:`PYTHONUOPS` or :option:`-X uops <-X>` enabled.

Objects/funcobject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ _PyFunction_LookupByVersion(uint32_t version)
288288
PyFunctionObject *func = interp->func_state.func_version_cache[
289289
version % FUNC_VERSION_CACHE_SIZE];
290290
if (func != NULL && func->func_version == version) {
291-
return (PyFunctionObject *)Py_NewRef(func);
291+
return func;
292292
}
293293
return NULL;
294294
}

0 commit comments

Comments
 (0)