If we're loading libz dynamically, and COMP_zlib() is called more than once,
authorRichard Levitte <levitte@openssl.org>
Fri, 4 Oct 2002 13:04:37 +0000 (13:04 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 4 Oct 2002 13:04:37 +0000 (13:04 +0000)
only the first call would provide the correct result.
PR: 277

crypto/comp/c_zlib.c

index cd2f8a491b933154f17992eb2a17f2f07fb64517..8c0876151ac7feff30760102dc0a19ef3dab7582 100644 (file)
@@ -208,11 +208,11 @@ COMP_METHOD *COMP_zlib(void)
                                = (inflateInit__ft) DSO_bind_func(zlib_dso,
                                        "inflateInit_");
                        zlib_loaded++;
-                       meth = &zlib_method;
                        }
                }
 
-#elif defined(ZLIB)
+#endif
+#if defined(ZLIB) || defined(ZLIB_SHARED)
        meth = &zlib_method;
 #endif