From 4f1e14923d50353097e8f629a8138d1acb8e64a1 Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Tue, 25 Nov 2008 22:16:03 +0000 Subject: * generic/tclIO.c (TclFinalizeIOSubsystem): Applied Alexandre Ferrieux's patch for [Bug 2270477] to prevent infinite looping during finalization of channels not bound to interpreters. --- ChangeLog | 6 ++++++ generic/tclIO.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3acfaed..80b6cc6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-25 Andreas Kupries + + * generic/tclIO.c (TclFinalizeIOSubsystem): Applied Alexandre + Ferrieux's patch for [Bug 2270477] to prevent infinite looping + during finalization of channels not bound to interpreters. + 2008-08-23 Andreas Kupries * generic/tclIO.c: Backport of fix for [Bug 2333466]. diff --git a/generic/tclIO.c b/generic/tclIO.c index d1c7b6b..96659e8 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIO.c,v 1.137.2.7 2008/11/23 19:29:19 andreas_kupries Exp $ + * RCS: @(#) $Id: tclIO.c,v 1.137.2.8 2008/11/25 22:16:03 andreas_kupries Exp $ */ #include "tclInt.h" @@ -364,8 +364,8 @@ TclFinalizeIOSubsystem(void) */ chanPtr->instanceData = NULL; - SetFlag(statePtr, CHANNEL_DEAD); } + SetFlag(statePtr, CHANNEL_DEAD); } } -- cgit v0.12