From 477e207f284ea3dda8db07fef84d7f01665004c4 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Sun, 23 Jun 2013 18:59:36 +0000 Subject: Add some more missing ast_sorcery_generic_alloc conversions. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392667 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_sip_acl.c | 2 +- res/res_sip_endpoint_identifier_ip.c | 2 +- res/res_sip_outbound_registration.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'res') diff --git a/res/res_sip_acl.c b/res/res_sip_acl.c index f626a976f..057ae96f7 100644 --- a/res/res_sip_acl.c +++ b/res/res_sip_acl.c @@ -226,7 +226,7 @@ static void sip_acl_destructor(void *obj) static void *sip_acl_alloc(const char *name) { - struct sip_acl *acl = ao2_alloc(sizeof(*acl), sip_acl_destructor); + struct sip_acl *acl = ast_sorcery_generic_alloc(sizeof(*acl), sip_acl_destructor); if (!acl) { return NULL; } diff --git a/res/res_sip_endpoint_identifier_ip.c b/res/res_sip_endpoint_identifier_ip.c index 89bf1d554..9e39b277a 100644 --- a/res/res_sip_endpoint_identifier_ip.c +++ b/res/res_sip_endpoint_identifier_ip.c @@ -74,7 +74,7 @@ static void ip_identify_destroy(void *obj) /*! \brief Allocator function for a matching object */ static void *ip_identify_alloc(const char *name) { - struct ip_identify_match *identify = ao2_alloc(sizeof(*identify), ip_identify_destroy); + struct ip_identify_match *identify = ast_sorcery_generic_alloc(sizeof(*identify), ip_identify_destroy); if (!identify || ast_string_field_init(identify, 256)) { ao2_cleanup(identify); diff --git a/res/res_sip_outbound_registration.c b/res/res_sip_outbound_registration.c index 203ecfc5a..d3c4ad815 100644 --- a/res/res_sip_outbound_registration.c +++ b/res/res_sip_outbound_registration.c @@ -469,7 +469,7 @@ static void sip_outbound_registration_destroy(void *obj) /*! \brief Allocator function for registration information */ static void *sip_outbound_registration_alloc(const char *name) { - struct sip_outbound_registration *registration = ao2_alloc(sizeof(*registration), sip_outbound_registration_destroy); + struct sip_outbound_registration *registration = ast_sorcery_generic_alloc(sizeof(*registration), sip_outbound_registration_destroy); if (!registration || ast_string_field_init(registration, 256)) { ao2_cleanup(registration); -- cgit v1.2.3