From: Guilherme Polo Date: Fri, 6 Feb 2009 22:26:22 +0000 (+0000) Subject: Partial fix to issue #1731706: memory leak in Tkapp_Call when calling X-Git-Tag: v2.7a1~2093 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14ff18d211f368cf6eb668365fca17ff4581bc1b;p=python Partial fix to issue #1731706: memory leak in Tkapp_Call when calling from a thread different than the one that created the Tcl interpreter. --- diff --git a/Misc/NEWS b/Misc/NEWS index c84325796e..3c86cf2305 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -149,6 +149,10 @@ Core and Builtins Library ------- +- Partial fix to issue #1731706: memory leak in Tkapp_Call when calling + from a thread different than the one that created the Tcl interpreter. + Patch by Robert Hancock. + - Issue #1520877: Now distutils.sysconfig reads $AR from the environment/Makefile. Patch by Douglas Greiman. diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 8b56bcd0dc..79fa6327ae 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1256,7 +1256,9 @@ Tkapp_CallProc(Tkapp_CallEvent *e, int flags) *(e->res) = Tkapp_CallResult(e->self); } LEAVE_PYTHON - done: + + Tkapp_CallDeallocArgs(objv, objStore, objc); +done: /* Wake up calling thread. */ Tcl_MutexLock(&call_mutex); Tcl_ConditionNotify(&e->done);