From 3b0db10aa43edac4a9d2efb14e79373d51997b58 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Sat, 18 Apr 2020 09:57:20 -0600 Subject: [PATCH] Increase DOH_POOL_SIZE Increase DOH_POOL_SIZE to 2^22. Addresses GH-1775. --- Source/DOH/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DOH/memory.c b/Source/DOH/memory.c index e0e4c68bd..4a9494e85 100644 --- a/Source/DOH/memory.c +++ b/Source/DOH/memory.c @@ -15,7 +15,7 @@ #include "dohint.h" #ifndef DOH_POOL_SIZE -#define DOH_POOL_SIZE 16384 +#define DOH_POOL_SIZE 4194304 #endif /* Checks stale DOH object use - will use a lot more memory as pool memory is not re-used. */