From c588827c5492fd9626c04ed618bfcdb02d9f7c70 Mon Sep 17 00:00:00 2001 From: Joe Mistachkin Date: Thu, 23 Jul 2009 10:19:45 +0000 Subject: Fix for [Bug 2820349] --- ChangeLog | 4 ++++ generic/tclNotify.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d2abbe5..e77c783 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-07-23 Joe Mistachkin + + * generic/tclNotify.c: Fix for [Bug 2820349]. + 2009-07-14 Andreas Kupries * generic/tclBasic.c (DeleteInterpProc,TclArgumentBCEnter, diff --git a/generic/tclNotify.c b/generic/tclNotify.c index c09d851..f08a76c 100644 --- a/generic/tclNotify.c +++ b/generic/tclNotify.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNotify.c,v 1.11.2.2 2005/04/26 00:46:02 das Exp $ + * RCS: @(#) $Id: tclNotify.c,v 1.11.2.3 2009/07/23 10:19:46 mistachkin Exp $ */ #include "tclInt.h" @@ -409,6 +409,8 @@ Tcl_ThreadQueueEvent(threadId, evPtr, position) if (tsdPtr) { QueueEvent(tsdPtr, evPtr, position); + } else { + ckfree((char *) evPtr); } Tcl_MutexUnlock(&listLock); } -- cgit v0.12