From: Rusty Russell Date: Tue, 11 Aug 2009 11:58:51 +0000 (+0930) Subject: Increase max size: I actually hit this with a large file. X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;h=aa83ea33d5d2237fe205c8541b17362f9cb8af20;p=ccan-lca-2011.git Increase max size: I actually hit this with a large file. --- diff --git a/ccan/talloc/talloc.c b/ccan/talloc/talloc.c index a5cd447..58921e1 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