Fix master compile error

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Matt Caswell
2016-02-26 16:50:59 +00:00
parent 56b10d8824
commit b6e785842a

View File

@@ -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) {