Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Veksler <Mihails.Vekslers@zabbix.com>2018-10-31 15:22:11 +0300
committerMichael Veksler <Mihails.Vekslers@zabbix.com>2018-10-31 15:22:11 +0300
commit72a7031c5a9cb08f716c57d1a02fe3ebf9452758 (patch)
tree938d21d114a4e5f07b04574389a3e91043b9f54d /include/zbxalgo.h
parente7fda1d01e45e4795ec23d5f5ddd119f7ddb571b (diff)
........S. [ZBX-14974] fixed memory leak in case duplication name of the vmware performance counters
Diffstat (limited to 'include/zbxalgo.h')
-rw-r--r--include/zbxalgo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/zbxalgo.h b/include/zbxalgo.h
index 0bb9bec37dc..13d964dfb6e 100644
--- a/include/zbxalgo.h
+++ b/include/zbxalgo.h
@@ -148,6 +148,7 @@ void zbx_hashset_create_ext(zbx_hashset_t *hs, size_t init_size,
zbx_mem_free_func_t mem_free_func);
void zbx_hashset_destroy(zbx_hashset_t *hs);
+int zbx_hashset_reserve(zbx_hashset_t *hs, int num_slots_req);
void *zbx_hashset_insert(zbx_hashset_t *hs, const void *data, size_t size);
void *zbx_hashset_insert_ext(zbx_hashset_t *hs, const void *data, size_t size, size_t offset);
void *zbx_hashset_search(zbx_hashset_t *hs, const void *data);