diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | unix/tclUnixInit.c | 5 |
2 files changed, 11 insertions, 2 deletions
@@ -1,4 +1,10 @@ -2013-03-29 Don Porter <dgp@users.sourceforge.net> +2013-04-03 Jan Nijtmans <nijtmans@users.sf.net> + + * unix/tclUnixInit.c: [Bug 3205320]: stack space detection + defeated by inlining. Now fixed in the cross-compile + case as well. + +2013-04-03 Don Porter <dgp@users.sourceforge.net> *** 8.5.14 TAGGED FOR RELEASE *** 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 |