From 03a072212a5fdc8955200723dc0939ca399d0f44 Mon Sep 17 00:00:00 2001 From: dgp Date: Sat, 13 Nov 2004 00:41:56 +0000 Subject: * library/init.tcl: Made [unknown] robust in the case that either of the variables ::errorInfo or ::errorCode gets unset. [Bug 1063707] FossilOrigin-Name: e526fa14ad59fdfa8d1f3928b1f34e63fbab78b9 --- ChangeLog | 6 ++++++ library/init.tcl | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 232dcf2..2903d8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-11-12 Don Porter + + * library/init.tcl: Made [unknown] robust in the case that + either of the variables ::errorInfo or ::errorCode gets unset. + [Bug 1063707] + 2004-11-12 Jeff Hobbs * generic/tclEncoding.c (TableFromUtfProc): correct crash diff --git a/library/init.tcl b/library/init.tcl index b669d6a..0e7cd94 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.55.2.3 2004/05/03 14:28:59 dgp Exp $ +# RCS: @(#) $Id: init.tcl,v 1.55.2.4 2004/11/13 00:41:58 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -189,6 +189,14 @@ proc unknown args { # may get modified if caught errors occur below. The variables will # be restored just before re-executing the missing command. + # Safety check in case something unsets the variables + # ::errorInfo or ::errorCode. [Bug 1063707] + if {![info exists errorCode]} { + set errorCode "" + } + if {![info exists errorInfo]} { + set errorInfo "" + } set savedErrorCode $errorCode set savedErrorInfo $errorInfo set name [lindex $args 0] -- cgit v0.12