diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-03 13:26:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-04-03 13:26:16 (GMT) |
commit | a411cd47dcda82b926fa719508a6c445cf5ab503 (patch) | |
tree | ab8a029e357ef92e634c80d00a6ee43daf33ddfa /unix | |
parent | f786fd625e0b4ab3bd3316570deca8c63d856d0c (diff) | |
parent | 6c3c75da93a7175c089c203b42184e0ed86df6db (diff) | |
download | tcl-a411cd47dcda82b926fa719508a6c445cf5ab503.zip tcl-a411cd47dcda82b926fa719508a6c445cf5ab503.tar.gz tcl-a411cd47dcda82b926fa719508a6c445cf5ab503.tar.bz2 |
[Bug 3205320]: stack space detection defeated by inlining. Now fixed in the cross-compile case as well.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixInit.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index f9015b7..0b98cf9 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -1111,7 +1111,7 @@ TclpGetCStackParams( * Not initialised! */ - stackGrowsDown = StackGrowsDown(&result); + stackGrowsDown = StackGrowsDown(NULL); } #endif @@ -1186,6 +1186,9 @@ StackGrowsDown( int *parent) { int here; + if (!parent) { + return StackGrowsDown(&here); + } return (&here < parent); } #endif |