diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-08-08 01:44:20 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-08-08 01:44:20 +0200 |
commit | 7c25ff0c11aaa58da9a1083a282a5fbe1e870119 (patch) | |
tree | 1338ac66ee37dde7236f7ca01e584514985d8ec1 | |
parent | a28bdd3e1f4f02626ddad3bede139e4c245e8fb0 (diff) | |
download | plan9front-7c25ff0c11aaa58da9a1083a282a5fbe1e870119.tar.xz |
sam: avoid thread stack overflow with 32bit runes (from sources)
-rw-r--r-- | sys/src/cmd/samterm/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/cmd/samterm/main.c b/sys/src/cmd/samterm/main.c index 6f47e455c..71999b76b 100644 --- a/sys/src/cmd/samterm/main.c +++ b/sys/src/cmd/samterm/main.c @@ -9,6 +9,8 @@ #include "flayer.h" #include "samterm.h" +int mainstacksize = 16*1024; + Text cmd; Rune *scratch; long nscralloc; |