OpenSSL 1.1.1-pre2
This commit is contained in:
@@ -256,14 +256,13 @@ COMP_METHOD *COMP_zlib(void)
|
||||
meth = &zlib_stateful_method;
|
||||
#endif
|
||||
|
||||
return (meth);
|
||||
return meth;
|
||||
}
|
||||
|
||||
void comp_zlib_cleanup_int(void)
|
||||
{
|
||||
#ifdef ZLIB_SHARED
|
||||
if (zlib_dso != NULL)
|
||||
DSO_free(zlib_dso);
|
||||
DSO_free(zlib_dso);
|
||||
zlib_dso = NULL;
|
||||
#endif
|
||||
}
|
||||
@@ -297,7 +296,11 @@ static long bio_zlib_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp);
|
||||
static const BIO_METHOD bio_meth_zlib = {
|
||||
BIO_TYPE_COMP,
|
||||
"zlib",
|
||||
/* TODO: Convert to new style write function */
|
||||
bwrite_conv,
|
||||
bio_zlib_write,
|
||||
/* TODO: Convert to new style read function */
|
||||
bread_conv,
|
||||
bio_zlib_read,
|
||||
NULL, /* bio_zlib_puts, */
|
||||
NULL, /* bio_zlib_gets, */
|
||||
|
||||
Reference in New Issue
Block a user