| 61 | |
| 62 | |
| 63 | void Archive::CheckArc(bool EnableBroken) |
| 64 | { |
| 65 | if (!IsArchive(EnableBroken)) |
| 66 | { |
| 67 | // If FailedHeaderDecryption is set, we already reported that archive |
| 68 | // password is incorrect. |
| 69 | if (!FailedHeaderDecryption) |
| 70 | uiMsg(UIERROR_BADARCHIVE,FileName); |
| 71 | ErrHandler.Exit(RARX_FATAL); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | |
| 76 | #if !defined(SFX_MODULE) |
no test coverage detected