From: Paul Mackerras Date: Wed, 30 Apr 1997 05:47:23 +0000 (+0000) Subject: added zalloc_init function ptr for zlib stuff X-Git-Tag: RELEASE_2_3_6~213 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=a97726dbc8114d8f04245be0556af0c16104b911 added zalloc_init function ptr for zlib stuff --- diff --git a/netbsd-1.1/ppp-deflate.c b/netbsd-1.1/ppp-deflate.c index 9328b25..697cac6 100644 --- a/netbsd-1.1/ppp-deflate.c +++ b/netbsd-1.1/ppp-deflate.c @@ -1,4 +1,4 @@ -/* $Id: ppp-deflate.c,v 1.5 1997/03/04 03:33:28 paulus Exp $ */ +/* $Id: ppp-deflate.c,v 1.6 1997/04/30 05:47:23 paulus Exp $ */ /* * ppp_deflate.c - interface the zlib procedures for Deflate compression @@ -148,6 +148,7 @@ z_comp_alloc(options, opt_len) state->strm.next_in = NULL; state->strm.zalloc = zalloc; + state->strm.zalloc_init = zalloc; state->strm.zfree = zfree; if (deflateInit2(&state->strm, Z_DEFAULT_COMPRESSION, DEFLATE_METHOD_VAL, -w_size, 8, Z_DEFAULT_STRATEGY, DEFLATE_OVHD+2) != Z_OK) { @@ -379,6 +380,7 @@ z_decomp_alloc(options, opt_len) state->strm.next_out = NULL; state->strm.zalloc = zalloc; + state->strm.zalloc_init = zalloc; state->strm.zfree = zfree; if (inflateInit2(&state->strm, -w_size) != Z_OK) { FREE(state, M_DEVBUF);