diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-26 12:14:17 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-26 12:26:52 +0000 |
commit | f84b86d901c8ba53147ae89bce894f58e0448be3 (patch) | |
tree | 05a9ac919951becad5253bfe45d439a622379d86 /test | |
parent | 06c92488d21d4eefa8f58a498a1ea174856ccd4f (diff) | |
download | rspamd-f84b86d901c8ba53147ae89bce894f58e0448be3.tar.gz rspamd-f84b86d901c8ba53147ae89bce894f58e0448be3.zip |
[Rework] Track maps origins
Diffstat (limited to 'test')
-rw-r--r-- | test/rspamd_radix_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rspamd_radix_test.c b/test/rspamd_radix_test.c index 5841dd10f..9a637344c 100644 --- a/test/rspamd_radix_test.c +++ b/test/rspamd_radix_test.c @@ -78,7 +78,7 @@ struct _tv { static void rspamd_radix_test_vec (void) { - radix_compressed_t *tree = radix_create_compressed (); + radix_compressed_t *tree = radix_create_compressed (NULL); struct _tv *t = &test_vec[0]; struct in_addr ina; struct in6_addr in6a; @@ -209,7 +209,7 @@ rspamd_radix_test_func (void) { struct btrie *btrie; rspamd_mempool_t *pool; - radix_compressed_t *comp_tree = radix_create_compressed (); + radix_compressed_t *comp_tree = radix_create_compressed (NULL); struct { guint32 addr; guint32 mask; |