From bf149410eaf1a0d7e4b326816c4727aa0bd7425b Mon Sep 17 00:00:00 2001 From: Sandrine Avakian Date: Fri, 8 Jul 2016 15:04:54 +0200 Subject: [PATCH] Fix small error in AES patch. --- coreapi/misc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coreapi/misc.c b/coreapi/misc.c index f981e951f..ec1986896 100644 --- a/coreapi/misc.c +++ b/coreapi/misc.c @@ -1749,6 +1749,8 @@ void linphone_core_set_tone(LinphoneCore *lc, LinphoneToneID id, const char *aud const MSCryptoSuite * linphone_core_get_srtp_crypto_suites(LinphoneCore *lc){ const char *config= lp_config_get_string(lc->config, "sip", "srtp_crypto_suites", "AES_CM_128_HMAC_SHA1_80, AES_CM_128_HMAC_SHA1_32, AES_256_CM_HMAC_SHA1_80, AES_256_CM_HMAC_SHA1_32"); + char *tmp=ms_strdup(config); + char *sep; char *pos; char *nextpos;