summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-10-30 13:08:58 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-10-30 13:08:58 (GMT)
commit1451e2e73897e19bafe96ada57ebc12f0996f368 (patch)
treefe7fe36aa3e58c7a25a0580f324d6ea700bac6a2 /generic
parent45f660b617183300236324d98ef8b9b85dfc5502 (diff)
downloadtcl-1451e2e73897e19bafe96ada57ebc12f0996f368.zip
tcl-1451e2e73897e19bafe96ada57ebc12f0996f368.tar.gz
tcl-1451e2e73897e19bafe96ada57ebc12f0996f368.tar.bz2
Add missing initialization.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclNamesp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 670ae83..ced812b 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -22,7 +22,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclNamesp.c,v 1.109 2006/10/29 21:40:43 msofer Exp $
+ * RCS: @(#) $Id: tclNamesp.c,v 1.110 2006/10/30 13:08:58 dkf Exp $
*/
#include "tclInt.h"
@@ -444,6 +444,7 @@ Tcl_PushCallFrame(
iPtr->framePtr = framePtr;
iPtr->varFramePtr = framePtr;
+ iPtr->clientData = NULL;
return TCL_OK;
}