mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Missed an astobj2.c debug tag.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374279 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2982,7 +2982,8 @@ struct ao2_container *__ao2_container_alloc_hash(unsigned int ao2_options,
|
||||
num_buckets = hash_fn ? n_buckets : 1;
|
||||
container_size = sizeof(struct ao2_container_hash) + num_buckets * sizeof(struct hash_bucket);
|
||||
|
||||
self = __ao2_alloc(container_size, container_destruct, ao2_options);
|
||||
self = ao2_t_alloc_options(container_size, container_destruct, ao2_options,
|
||||
"New hash container");
|
||||
return hash_ao2_container_init(self, container_options, num_buckets,
|
||||
hash_fn, sort_fn, cmp_fn);
|
||||
}
|
||||
|
Reference in New Issue
Block a user