diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-08-20 15:02:32 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-08-20 15:02:32 (GMT) |
commit | d873ee915ba7272ff08adda29fcc075b6cff21f4 (patch) | |
tree | 948f305c7927b8e0a41b5180b90b930f4e5cf9a1 | |
parent | b2fbd3af7fb8e933d6689b24dd0328b311da11fa (diff) | |
download | tcl-d873ee915ba7272ff08adda29fcc075b6cff21f4.zip tcl-d873ee915ba7272ff08adda29fcc075b6cff21f4.tar.gz tcl-d873ee915ba7272ff08adda29fcc075b6cff21f4.tar.bz2 |
Squelch warning
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 65795bd..0311da2 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.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: tclExecute.c,v 1.406 2008/08/17 19:37:11 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.407 2008/08/20 15:02:32 dkf Exp $ */ #include "tclInt.h" @@ -2370,7 +2370,7 @@ TclExecuteByteCode( goto instStartCmdOK; } else { const char *bytes; - int length, opnd; + int length = 0, opnd; Tcl_Obj *newObjResultPtr; bytes = GetSrcInfoForPc(pc, codePtr, &length); |