[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Fri Feb 26 17:05:22 UTC 2016


The branch master has been updated
       via  b6e785842a8e9830e078cf70073c10f7be36b3b1 (commit)
      from  56b10d88246af1b2d52cd488a7d3584acee08225 (commit)


- Log -----------------------------------------------------------------
commit b6e785842a8e9830e078cf70073c10f7be36b3b1
Author: Matt Caswell <matt at openssl.org>
Date:   Fri Feb 26 16:50:59 2016 +0000

    Fix master compile error
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/o_str.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/o_str.c b/crypto/o_str.c
index b01128c..84005e6 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) {


More information about the openssl-commits mailing list