summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2015-04-29 12:48:46 +0200
committerDirk Engling <erdgeist@erdgeist.org>2015-04-29 12:48:46 +0200
commit19361ed933b4f1ccbb865520e5e5f3bf24cbd063 (patch)
treeea5c3811c289169c202fac87d6c6e7a84511e8bf
parent43a5ac139b552b23de78434a8ee3df8fc6651b38 (diff)
Without explicitely setting ulimit, we cant expect 8MB on stack, resort to 4MB
-rw-r--r--src/export/extract_version_4.c2
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
12int main(int argc, char **argv) { 12int 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.";