Skip to content

Commit 172f875

Browse files
authored
fix broken obfuscation paths
this commit should also close #31 because obfuscation paths were broken.
1 parent 949ee03 commit 172f875

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Bind/src/Core/Obfuscation/IndirectObfuscation.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ bool IndirectObfuscationManager::generateIndirectObfuscation()
4444
PathUtils::getSysCallerPath() + "/Wrapper/src/SysCaller.asm";
4545

4646
QString headerPath = isKernel ?
47-
PathUtils::getSysCallerKPath() + "/Wrapper/SysK/SysKFunctions.h" :
48-
PathUtils::getSysCallerPath() + "/Wrapper/Sys/SysFunctions.h";
47+
PathUtils::getSysCallerKPath() + "/Wrapper/include/SysK/SysKFunctions.h" :
48+
PathUtils::getSysCallerPath() + "/Wrapper/include/Sys/SysFunctions.h";
4949

5050
return processIndirectAssemblyFile(asmPath, headerPath);
5151
}
@@ -609,4 +609,4 @@ bool IndirectObfuscationManager::updateDefFile(const QString& defPath,
609609

610610
defFile.close();
611611
return true;
612-
}
612+
}

0 commit comments

Comments
 (0)