From aa83ea33d5d2237fe205c8541b17362f9cb8af20 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 11 Aug 2009 21:28:51 +0930 Subject: [PATCH] Increase max size: I actually hit this with a large file. --- ccan/talloc/talloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2