Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorNick Harper <nharper@chromium.org>2014-12-23 01:58:54 +0300
committerAdam Langley <agl@google.com>2015-01-06 04:14:03 +0300
commit4dd053e0593cff0e0eb615b2d5a994510922a6f7 (patch)
treeba089ba04bda00b9c1702e0c48644fa58ecde21f /ssl
parent517073cd4b7051811d1ede44aa8e59214e9759c8 (diff)
Cast ca_list to (void *) to silence msvc warning 4090
Change-Id: If1fad46f14286ba98b86754605731a7be31de901 Reviewed-on: https://boringssl-review.googlesource.com/2680 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 629eb8f5..ed4e81bf 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -1070,7 +1070,7 @@ ssl_create_cipher_list(const SSL_PROTOCOL_METHOD *ssl_method,
ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list);
}
- OPENSSL_free(ca_list); /* Not needed anymore */
+ OPENSSL_free((void *)ca_list); /* Not needed anymore */
if (!ok) {
goto err;