From: Joshua Colp Date: Sun, 23 Jun 2013 18:59:36 +0000 (+0000) Subject: Add some more missing ast_sorcery_generic_alloc conversions. X-Git-Tag: 13.0.0-beta1~1627 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=477e207f284ea3dda8db07fef84d7f01665004c4;p=thirdparty%2Fasterisk.git 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 --- diff --git a/res/res_sip_acl.c b/res/res_sip_acl.c index f626a976fc..057ae96f7c 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 89bf1d5543..9e39b277ad 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 203ecfc5a8..d3c4ad8158 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);