Close the currently open zip entry.
| 93 | |
| 94 | // Close the currently open zip entry. |
| 95 | void unzipper::closeEntry() |
| 96 | { |
| 97 | if (entryOpen_) |
| 98 | { |
| 99 | unzCloseCurrentFile(zipFile_); |
| 100 | entryOpen_ = false; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | // Check if there is a currently open zip entry. |
| 105 | // return: |
nothing calls this directly
no test coverage detected