Don't use a default for --with-zlib-lib on Windows with option 'zlib'
[openssl.git] / 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;
 
-    maxlen = OPENSSL_strnlen(str, s)
+    maxlen = OPENSSL_strnlen(str, s);
 
     ret = CRYPTO_malloc(maxlen + 1, file, line);
     if (ret) {