From: Richard Mudgett Date: Tue, 2 Oct 2012 23:23:30 +0000 (+0000) Subject: Missed an astobj2.c debug tag. X-Git-Tag: 13.0.0-beta1~2463 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b25076e837559d70203a011f886bc0d1fff2185;p=thirdparty%2Fasterisk.git Missed an astobj2.c debug tag. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374279 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/astobj2.c b/main/astobj2.c index 7e87596060..082dfc0384 100644 --- a/main/astobj2.c +++ b/main/astobj2.c @@ -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); }