Commit b6e78584 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix master compile error



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 56b10d88
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {