From 876d990ae0efa18da9b3116048b4a29e12cec5d0 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Mon, 19 Jul 2004 09:57:58 +0000 Subject: The binary layout of cfgdata has changed, so the magic number has to change as well. Display an additional message box when a mismatch is detected. --- PC/bdist_wininst/install.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c index fac914c..d268624 100644 --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -955,7 +955,11 @@ static BOOL ExtractInstallData(char *data, DWORD size, int *pexe_size, return FALSE; } - if (pmd->tag != 0x1234567A || ofs < 0) { + if (pmd->tag != 0x1234567B) { + return SystemError(0, + "Invalid cfgdata magic number (see bdist_wininst.py)"); + } + if (ofs < 0) { return FALSE; } -- cgit v0.12