summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2009-08-11 21:28:51 +0930
committerRusty Russell <rusty@rustcorp.com.au>2009-08-11 21:28:51 +0930
commitaa83ea33d5d2237fe205c8541b17362f9cb8af20 (patch)
tree638620181af675ff0fa01659ae46982d57bc3d38
parentba91d9ad7decb787e83c2826ba66bcaba670d450 (diff)
Increase max size: I actually hit this with a large file.
-rw-r--r--ccan/talloc/talloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccan/talloc/talloc.c b/ccan/talloc/talloc.c
index a5cd447e..58921e17 100644
--- a/ccan/talloc/talloc.c
+++ b/ccan/talloc/talloc.c
@@ -43,7 +43,7 @@
#define ALWAYS_REALLOC 0
-#define MAX_TALLOC_SIZE 0x10000000
+#define MAX_TALLOC_SIZE 0x7FFFFFFF
#define TALLOC_MAGIC 0xe814ec70
#define TALLOC_FLAG_FREE 0x01
#define TALLOC_FLAG_LOOP 0x02