From 0f08eba9cd825cd226a2290c7f294afc602fc9a5 Mon Sep 17 00:00:00 2001 From: Jehan Monnier Date: Tue, 28 Mar 2017 10:20:02 +0200 Subject: [PATCH] switch linphone_address parsing to fast version of belle_sip_header_address --- coreapi/bellesip_sal/sal_address_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/bellesip_sal/sal_address_impl.c b/coreapi/bellesip_sal/sal_address_impl.c index 3ee8343d7..6a9afe9d5 100644 --- a/coreapi/bellesip_sal/sal_address_impl.c +++ b/coreapi/bellesip_sal/sal_address_impl.c @@ -22,7 +22,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. SalAddress * sal_address_new(const char *uri){ belle_sip_header_address_t* result; if (uri) { - result=belle_sip_header_address_parse (uri); + result=belle_sip_header_address_fast_parse (uri); /*may return NULL*/ } else { result = belle_sip_header_address_new();