diff options
author | nijtmans <nijtmans> | 2010-03-26 09:43:51 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-03-26 09:43:51 (GMT) |
commit | 05f862b0622794e90c90544b62b929ac0f47753c (patch) | |
tree | 6e742207f3a09be067fd8d3d161c693d426aac30 /generic | |
parent | 79109281ed47427b88e1cc5eae8325954cc7de80 (diff) | |
download | tcl-05f862b0622794e90c90544b62b929ac0f47753c.zip tcl-05f862b0622794e90c90544b62b929ac0f47753c.tar.gz tcl-05f862b0622794e90c90544b62b929ac0f47753c.tar.bz2 |
[Bug 2976508] tcl HEAD fails on HP-UX
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index d4bcae0..f12fb4d 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.474 2010/02/24 10:49:04 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.475 2010/03/26 09:43:51 nijtmans Exp $ */ #include "tclInt.h" @@ -1922,7 +1922,7 @@ TclExecuteByteCode( NULL, NULL, NULL, - &iPtr->execEnvPtr->constants[0], + NULL, 0, 0, NULL, @@ -1977,6 +1977,7 @@ TclExecuteByteCode( char cmdNameBuf[21]; #endif + TAUX.constants = &iPtr->execEnvPtr->constants[0]; if (!codePtr) { CoroutineData *corPtr; |