From: Matt Caswell Date: Fri, 26 Feb 2016 16:50:59 +0000 (+0000) Subject: Fix master compile error X-Git-Tag: OpenSSL_1_1_0-pre4~494 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b6e785842a8e9830e078cf70073c10f7be36b3b1;p=oweals%2Fopenssl.git Fix master compile error Reviewed-by: Rich Salz --- diff --git a/crypto/o_str.c b/crypto/o_str.c index b01128cdb3..84005e66b5 100644 --- a/crypto/o_str.c +++ b/crypto/o_str.c @@ -139,7 +139,7 @@ char *CRYPTO_strndup(const char *str, size_t s, const char* file, int line) if (str == NULL) return NULL; - maxlen = OPENSSL_strnlen(str, s) + maxlen = OPENSSL_strnlen(str, s); ret = CRYPTO_malloc(maxlen + 1, file, line); if (ret) {