Kaydet (Commit) 876d990a authored tarafından Thomas Heller's avatar Thomas Heller

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.
üst b8f134e3
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment