diff options
author | stanton <stanton> | 1998-11-19 20:10:50 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-11-19 20:10:50 (GMT) |
commit | 2ca2b6fdac8c01b6b4157b9840d47781024e21f0 (patch) | |
tree | edc6a634767a5b0f0318441e097de4ec73ec1ebc | |
parent | 5ba038ae32228917a48baf9ccf1ab2ebee59ea31 (diff) | |
download | tcl-2ca2b6fdac8c01b6b4157b9840d47781024e21f0.zip tcl-2ca2b6fdac8c01b6b4157b9840d47781024e21f0.tar.gz tcl-2ca2b6fdac8c01b6b4157b9840d47781024e21f0.tar.bz2 |
eliminated purify warning and other lint
-rw-r--r-- | generic/tclExecute.c | 9 | ||||
-rw-r--r-- | generic/tclVar.c | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index dd174c6..b899085 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.4 1998/09/14 18:39:58 stanton Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.5 1998/11/19 20:10:51 stanton Exp $ */ #include "tclInt.h" @@ -3450,12 +3450,17 @@ TclGetExceptionRangeForPc(pc, catchOnly, codePtr) ByteCode* codePtr; /* Points to the ByteCode in which to search * for the enclosing ExceptionRange. */ { - ExceptionRange *rangeArrayPtr = codePtr->excRangeArrayPtr; + ExceptionRange *rangeArrayPtr; int numRanges = codePtr->numExcRanges; register ExceptionRange *rangePtr; int codeOffset = (pc - codePtr->codeStart); register int i, level; + if (numRanges == 0) { + return NULL; + } + rangeArrayPtr = codePtr->excRangeArrayPtr; + for (level = codePtr->maxExcRangeDepth; level >= 0; level--) { for (i = 0; i < numRanges; i++) { rangePtr = &(rangeArrayPtr[i]); diff --git a/generic/tclVar.c b/generic/tclVar.c index 2bc4a3f..88a5354 100644 --- a/generic/tclVar.c +++ b/generic/tclVar.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclVar.c,v 1.5 1998/09/14 18:40:02 stanton Exp $ + * RCS: @(#) $Id: tclVar.c,v 1.6 1998/11/19 20:10:52 stanton Exp $ */ #include "tclInt.h" @@ -191,8 +191,7 @@ TclLookupVar(interp, part1, part2, flags, msg, createPart1, createPart2, */ if ((flags & TCL_GLOBAL_ONLY) != 0 || iPtr->varFramePtr == NULL) { cxtNsPtr = iPtr->globalNsPtr; - } - else { + } else { cxtNsPtr = iPtr->varFramePtr->nsPtr; } @@ -217,8 +216,7 @@ TclLookupVar(interp, part1, part2, flags, msg, createPart1, createPart2, if (result == TCL_OK) { varPtr = (Var *) var; goto lookupVarPart2; - } - else if (result != TCL_CONTINUE) { + } else if (result != TCL_CONTINUE) { return (Var *) NULL; } } |