Fix master compile error
authorMatt Caswell <matt@openssl.org>
Fri, 26 Feb 2016 16:50:59 +0000 (16:50 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 26 Feb 2016 16:50:59 +0000 (16:50 +0000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/o_str.c

index b01128cdb379d89b4a60174dca7eae29b77f5e6f..84005e66b57a987462c43f53b2fc156a51d38fc6 100644 (file)
@@ -139,7 +139,7 @@ char *CRYPTO_strndup(const char *str, size_t s, const char* file, int line)
     if (str == NULL)
         return NULL;
 
     if (str == NULL)
         return NULL;
 
-    maxlen = OPENSSL_strnlen(str, s)
+    maxlen = OPENSSL_strnlen(str, s);
 
     ret = CRYPTO_malloc(maxlen + 1, file, line);
     if (ret) {
 
     ret = CRYPTO_malloc(maxlen + 1, file, line);
     if (ret) {