diff options
| author | dgp@users.sourceforge.net <dgp> | 2011-05-10 16:05:48 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2011-05-10 16:05:48 (GMT) |
| commit | 218ceaadd5f73fb8cda18ef6658390dba3540dc9 (patch) | |
| tree | 1ca2feda250662282a8e77080fef123d9256b839 /unix/tclUnixInit.c | |
| parent | 955b5f01d8001935ee2215cce6575d27d184dc14 (diff) | |
| download | tcl-218ceaadd5f73fb8cda18ef6658390dba3540dc9.zip tcl-218ceaadd5f73fb8cda18ef6658390dba3540dc9.tar.gz tcl-218ceaadd5f73fb8cda18ef6658390dba3540dc9.tar.bz2 | |
Completed patch with mucho comments. Merge 8.5.
Diffstat (limited to 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index a798ccb..5111746 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -1092,9 +1092,19 @@ TclpGetCStackParams( if (stackGrowsDown) { tsdPtr->stackBound = (int *) ((char *)tsdPtr->outerVarPtr - stackSize); + if (tsdPtr->stackBound > tsdPtr->outerVarPtr) { + /* Overflow, that should never happen, just set it to NULL. + * See [Bug #3166410] */ + tsdPtr->stackBound = NULL; + } } else { tsdPtr->stackBound = (int *) ((char *)tsdPtr->outerVarPtr + stackSize); + if (tsdPtr->stackBound < tsdPtr->outerVarPtr) { + /* Overflow, that should never happen, just set it to NULL. + * See [Bug #3166410] */ + tsdPtr->stackBound = NULL; + } } } |
