From c2d74a55e04544a1475ad8ddf98759d714300fcc Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 9 Oct 2016 19:50:35 +0200 Subject: [PATCH] Changed: Error 6 occurs when a 7z file is damaged and can't be uncompressed --- .../ryzom/tools/client/ryzom_installer/src/filesextractor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/filesextractor.cpp b/code/ryzom/tools/client/ryzom_installer/src/filesextractor.cpp index ab3c7d929..17319bf0e 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/filesextractor.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/filesextractor.cpp @@ -467,6 +467,10 @@ bool CFilesExtractor::extract7z() error = QApplication::tr("7zip decoder doesn't support this archive"); break; + case SZ_ERROR_INPUT_EOF: + error = QApplication::tr("Errors in 7z file"); + break; + case SZ_ERROR_FAIL: // error already defined break;