From a164602fa77f8463486d5c29de7fdd6e209b4741 Mon Sep 17 00:00:00 2001 From: Sandrine Avakian Date: Fri, 8 Jul 2016 15:07:17 +0200 Subject: [PATCH] Fixing error in bug fiex AES. --- coreapi/misc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coreapi/misc.c b/coreapi/misc.c index fe748b1d3..555d5b06c 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;