Support 2k10 PE x86 series

This commit is contained in:
longpanda
2021-08-16 00:39:26 +08:00
parent 6a244ff260
commit 9615e7eaa0
4 changed files with 6 additions and 2 deletions

View File

@@ -713,7 +713,7 @@ static BOOL Is2K10PE(void)
memset(szLine, 0, sizeof(szLine));
while (fgets(szLine, sizeof(szLine) - 1, fp))
{
if (strstr(szLine, "\\2k10\\"))
if (strstr(szLine, "2k10\\"))
{
bRet = TRUE;
break;