diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-14 14:11:50 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-14 14:11:50 +0000 |
commit | 840a70f2b10aee6b118ad5b5cd25c9b73e135c99 (patch) | |
tree | 73545f759f627d45d8b072a6b8fc6cc22cc6c470 /src/libutil/mem_pool.h | |
parent | b22485f657c40c9b9fda9675d25c9294288c5732 (diff) | |
download | rspamd-840a70f2b10aee6b118ad5b5cd25c9b73e135c99.tar.gz rspamd-840a70f2b10aee6b118ad5b5cd25c9b73e135c99.zip |
Fix issues with debug mode of mempool
Diffstat (limited to 'src/libutil/mem_pool.h')
-rw-r--r-- | src/libutil/mem_pool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/mem_pool.h b/src/libutil/mem_pool.h index fb54133b4..6f631e35d 100644 --- a/src/libutil/mem_pool.h +++ b/src/libutil/mem_pool.h @@ -93,6 +93,7 @@ struct rspamd_mutex_s; typedef struct memory_pool_s { GPtrArray *pools[RSPAMD_MEMPOOL_MAX]; GArray *destructors; + GPtrArray *trash_stack; GHashTable *variables; /**< private memory pool variables */ gsize elt_len; /**< size of an element */ struct rspamd_mempool_tag tag; /**< memory pool tag */ |