diff options
author | andreas_kupries <andreas_kupries@noemail.net> | 2005-10-05 17:44:57 (GMT) |
---|---|---|
committer | andreas_kupries <andreas_kupries@noemail.net> | 2005-10-05 17:44:57 (GMT) |
commit | f1253e24d224333d2a136caa51fd3810e44c9470 (patch) | |
tree | 2502e2775ad729ffc2f5ff6b95059104ec450b4e | |
parent | 33592b3b15e13d7c879d5047ed9418a6b3f50e42 (diff) | |
download | tcl-f1253e24d224333d2a136caa51fd3810e44c9470.zip tcl-f1253e24d224333d2a136caa51fd3810e44c9470.tar.gz tcl-f1253e24d224333d2a136caa51fd3810e44c9470.tar.bz2 |
* generic/tclIORChan.c (RcClose): Removed unreachable panic/return
statements. This fixes the remainder of [SF Tcl Bug 1286256].
FossilOrigin-Name: d91e2f06c9497a05154962ecefc0be687b651379
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclIORChan.c | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2005-10-05 Andreas Kupries <andreask@activestate.com> + + * generic/tclIORChan.c (RcClose): Removed unreachable panic/return + statements. This fixes the remainder of [SF Tcl Bug 1286256]. + 2005-10-05 Jeff Hobbs <jeffh@ActiveState.com> * tests/env.test (env-6.1): diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index 0a57eb3..a3012c0 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIORChan.c,v 1.5 2005/09/15 16:40:02 dgp Exp $ + * RCS: @(#) $Id: tclIORChan.c,v 1.6 2005/10/05 17:44:58 andreas_kupries Exp $ */ #include <tclInt.h> @@ -1048,9 +1048,6 @@ RcClose (clientData, interp) #endif return (res == TCL_OK) ? EOK : EINVAL; } - - Tcl_Panic ("Should not be reached"); - return EINVAL; } /* |