]> git.ozlabs.org Git - ppp.git/commitdiff
added zalloc_init function ptr for zlib stuff
authorPaul Mackerras <paulus@samba.org>
Wed, 30 Apr 1997 05:47:23 +0000 (05:47 +0000)
committerPaul Mackerras <paulus@samba.org>
Wed, 30 Apr 1997 05:47:23 +0000 (05:47 +0000)
netbsd-1.1/ppp-deflate.c

index 9328b253858db57927e2f310b499d4773e550097..697cac6a78754f7988e49a7202b4a47148d5b72c 100644 (file)
@@ -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);