aboutsummaryrefslogtreecommitdiff
path: root/infback.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:21:57 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:21:57 -0700
commit13a294f044ef0a89b2dcbfbb5d4d4c792673348e (patch)
treed9b377b4d8c00633c3da4e96659bfba9b08287f2 /infback.c
parent7c2a874e50b871d04fbd19501f7b42cff55e5abc (diff)
downloadzlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.tar.gz
zlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.tar.bz2
zlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.zip
zlib 1.2.0.1v1.2.0.1
Diffstat (limited to 'infback.c')
-rw-r--r--infback.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/infback.c b/infback.c
index 46090ad..fdd7d89 100644
--- a/infback.c
+++ b/infback.c
@@ -603,11 +603,8 @@ void FAR *out_desc;
603int ZEXPORT inflateBackEnd(strm) 603int ZEXPORT inflateBackEnd(strm)
604z_stream FAR *strm; 604z_stream FAR *strm;
605{ 605{
606 struct inflate_state FAR *state;
607
608 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == Z_NULL) 606 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == Z_NULL)
609 return Z_STREAM_ERROR; 607 return Z_STREAM_ERROR;
610 state = (struct inflate_state FAR *)strm->state;
611 ZFREE(strm, strm->state); 608 ZFREE(strm, strm->state);
612 strm->state = Z_NULL; 609 strm->state = Z_NULL;
613 Tracev((stderr, "inflate: end\n")); 610 Tracev((stderr, "inflate: end\n"));