Skip to content

Commit b9c9048

Browse files
0cynplafosse
authored andcommitted
Fix an incorrect offset used in KernelCache header parsing
1 parent b8430f7 commit b9c9048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

view/kernelcache/core/KernelCacheView.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ bool KernelCacheView::InitController()
899899

900900
{
901901
BinaryReader reader(GetParentView());
902-
reader.Seek(0x18);
902+
reader.Seek(0x10);
903903
uint64_t ncmds = reader.Read32();
904904
uint64_t offset = 0x20;
905905
for (uint64_t i = 0; i < ncmds; i++)

0 commit comments

Comments
 (0)