add missing files to CMakeList.txt

This commit is contained in:
Simon Morlat 2016-11-24 09:21:20 +01:00
parent c0b32a738f
commit 92b69f74e8
2 changed files with 4 additions and 1 deletions

View file

@ -69,6 +69,9 @@ set(CERTIFICATE_CN_FILES
set(CERTIFICATE_CLIENT_FILES
certificates/client/cert.pem
certificates/client/key.pem
certificates/client/cert2.pem
certificates/client/key2.pem
certificates/client/cert2-signed-by-other-ca.pem
)
set(CERTIFICATE_FILES ${CERTIFICATE_ALT_FILES} ${CERTIFICATE_CN_FILES} ${CERTIFICATE_CLIENT_FILES})

View file

@ -1226,7 +1226,7 @@ static void tls_authentication_requested_good(LinphoneCore *lc, LinphoneAuthInfo
linphone_auth_info_set_tls_key_path(auth_info, key);
linphone_core_add_auth_info(lc, auth_info);
bc_free(cert);
ms_free(key);
bc_free(key);
}
}