summaryrefslogtreecommitdiffstats
path: root/generic/tclStubLib.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2012-12-10 14:17:19 (GMT)
committerdgp <dgp@noemail.net>2012-12-10 14:17:19 (GMT)
commit945a69cfbb47c0ad903803cf5d0352cd9424d77e (patch)
tree9e6e9eace4c71b81049226179fa6f212072cd869 /generic/tclStubLib.c
parent5d14388700bbb9210645d075bd94cdbe97817f11 (diff)
parent6b9edcab8fd8e7e48dc9b4eb4d51c95368de8156 (diff)
downloadtcl-945a69cfbb47c0ad903803cf5d0352cd9424d77e.zip
tcl-945a69cfbb47c0ad903803cf5d0352cd9424d77e.tar.gz
tcl-945a69cfbb47c0ad903803cf5d0352cd9424d77e.tar.bz2
Restore the initialization of tclStubsPtr from the "Tcl" package clientData
so that we don't close off a potential avenue of future innovations. FossilOrigin-Name: 08341ded36458ada36d9e50c0c37ee9a98767d9c
Diffstat (limited to 'generic/tclStubLib.c')
-rw-r--r--generic/tclStubLib.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c
index b8979df..a9d0f02 100644
--- a/generic/tclStubLib.c
+++ b/generic/tclStubLib.c
@@ -71,6 +71,7 @@ Tcl_InitStubs(
int exact)
{
const char *actualVersion = NULL;
+ ClientData pkgData = NULL;
const TclStubs *stubsPtr;
/*
@@ -84,7 +85,7 @@ Tcl_InitStubs(
return NULL;
}
- actualVersion = stubsPtr->tcl_PkgRequireEx(interp, "Tcl", version, 0, NULL);
+ actualVersion = stubsPtr->tcl_PkgRequireEx(interp, "Tcl", version, 0, &pkgData);
if (actualVersion == NULL) {
return NULL;
}
@@ -114,7 +115,7 @@ Tcl_InitStubs(
}
}
}
- tclStubsPtr = stubsPtr;
+ tclStubsPtr = (TclStubs *)pkgData;
if (tclStubsPtr->hooks) {
tclPlatStubsPtr = tclStubsPtr->hooks->tclPlatStubs;