diff options
author | dgp <dgp@users.sourceforge.net> | 2008-10-17 16:32:57 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-10-17 16:32:57 (GMT) |
commit | c7737419286a172921b8edcbf3b4f40c02e02dae (patch) | |
tree | 28220fcac63f741bcf4e0650f857498e526120b2 /generic/tclCmdIL.c | |
parent | 842e3ff91428c72a2ce0d4df4889778af82f4b12 (diff) | |
download | tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.zip tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.tar.gz tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.tar.bz2 |
* generic/tclCompile.h: Declare the internal tclInstructionTable
* generic/tclExecute.c: to simply be "const", not CONST86.
* generic/tclCmdAH.c: whitespace.
* generic/tclCmdIL.c: Uninitialized variable warning.
* generic/tclTest.c: const correctness warning.
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r-- | generic/tclCmdIL.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index a6ee362..cd82228 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.162 2008/10/16 22:34:19 nijtmans Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.163 2008/10/17 16:32:58 dgp Exp $ */ #include "tclInt.h" @@ -2445,7 +2445,7 @@ Tcl_LrepeatObjCmd( /* The argument objects. */ { int elementCount, i, totalElems; - Tcl_Obj *listPtr, **dataArray; + Tcl_Obj *listPtr, **dataArray = NULL; /* * Check arguments for legality: |