diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2015-04-29 12:48:46 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2015-04-29 12:48:46 +0200 |
commit | 19361ed933b4f1ccbb865520e5e5f3bf24cbd063 (patch) | |
tree | ea5c3811c289169c202fac87d6c6e7a84511e8bf | |
parent | 43a5ac139b552b23de78434a8ee3df8fc6651b38 (diff) |
Without explicitely setting ulimit, we cant expect 8MB on stack, resort to 4MB
-rw-r--r-- | src/export/extract_version_4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/extract_version_4.c b/src/export/extract_version_4.c index e0e858d..735cb3a 100644 --- a/src/export/extract_version_4.c +++ b/src/export/extract_version_4.c | |||
@@ -7,7 +7,7 @@ | |||
7 | #include "mystdlib.h" | 7 | #include "mystdlib.h" |
8 | 8 | ||
9 | #define XORLEN (29) | 9 | #define XORLEN (29) |
10 | #define HUGEBLOCK (8*1024*1024) | 10 | #define HUGEBLOCK (4*1024*1024) |
11 | 11 | ||
12 | int main(int argc, char **argv) { | 12 | int main(int argc, char **argv) { |
13 | unsigned const char xorkey [XORLEN] = "Just for Fun. Linus Torvalds."; | 13 | unsigned const char xorkey [XORLEN] = "Just for Fun. Linus Torvalds."; |