Initialization method to be called if we hit an error while uncompressing. On hitting an error, call this method before returning the error.
| 427 | // uncompressing. On hitting an error, call this method before |
| 428 | // returning the error. |
| 429 | void ZLib::UncompressErrorInit() { |
| 430 | inflateEnd(&uncomp_stream_); |
| 431 | uncomp_init_ = false; |
| 432 | Reset(); |
| 433 | } |
| 434 | |
| 435 | int ZLib::UncompressInit(Bytef *dest, uLongf *destLen, |
| 436 | const Bytef *source, uLong *sourceLen) { |
nothing calls this directly
no outgoing calls
no test coverage detected