Close the currently open zip entry.
| 87 | |
| 88 | // Close the currently open zip entry. |
| 89 | void zipper::closeEntry() |
| 90 | { |
| 91 | if (entryOpen_) |
| 92 | { |
| 93 | zipCloseFileInZip(zipFile_); |
| 94 | entryOpen_ = false; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Check if there is a currently open file zip entry. |
| 99 | // return: |
nothing calls this directly
no test coverage detected