(strm)
| 629 | } |
| 630 | |
| 631 | int ZEXPORT inflateBackEnd(strm) |
| 632 | z_streamp strm; |
| 633 | { |
| 634 | if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) |
| 635 | return Z_STREAM_ERROR; |
| 636 | ZFREE(strm, strm->state); |
| 637 | strm->state = Z_NULL; |
| 638 | Tracev((stderr, "inflate: end\n")); |
| 639 | return Z_OK; |
| 640 | } |
no outgoing calls