Commit e984b2af authored by Richard Levitte's avatar Richard Levitte
Browse files

If we're loading libz dynamically, and COMP_zlib() is called more than once,

only the first call would provide the correct result.
PR: 277
parent 70e96dcf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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