From 7a6e00a792f58ea327115884a4efc8a9ef51e7ec Mon Sep 17 00:00:00 2001 From: Kirill Polyakov Date: Thu, 2 Oct 2025 00:53:49 +0300 Subject: [PATCH] Fix bug #77184 --- Common/OfficeFileFormatChecker2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/OfficeFileFormatChecker2.cpp b/Common/OfficeFileFormatChecker2.cpp index d9c8e41634..0498cb4ea5 100644 --- a/Common/OfficeFileFormatChecker2.cpp +++ b/Common/OfficeFileFormatChecker2.cpp @@ -1436,7 +1436,7 @@ bool COfficeFileFormatChecker::isHwpxFile(const std::wstring &fileName) if (19 <= unSize && NULL != strstr((char *)pBuffer, hwpxFormatLine)) { - nFileType = AVS_OFFICESTUDIO_FILE_DOCUMENT_HWPML; + nFileType = AVS_OFFICESTUDIO_FILE_DOCUMENT_HWPX; bResult = true; }