Rebase against 28bc1bb463eb4075c6a113ba5c279a0506c6daea.

This commit is contained in:
Zebediah Figura
2020-04-23 23:15:23 -05:00
parent abc772e286
commit f90eb74f8d
4 changed files with 5 additions and 62 deletions

View File

@@ -1,4 +1,4 @@
From 25bb10aa7f39e1586812802589a42c9cfa7d2513 Mon Sep 17 00:00:00 2001
From 36780c821f4ea99a93920625a6f6106a84883eb9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
Date: Mon, 3 Apr 2017 05:30:27 +0200
Subject: [PATCH] ntdll: Implement HashLinks field in LDR module data.
@@ -247,10 +247,10 @@ index 04ea7ea121a..2a8b4b3ad97 100644
server_init_process_done();
}
diff --git a/include/winternl.h b/include/winternl.h
index b77ab8fe03a..3d4863d8b04 100644
index f36419da782..20b267cd294 100644
--- a/include/winternl.h
+++ b/include/winternl.h
@@ -2268,8 +2268,8 @@ typedef struct _LDR_MODULE
@@ -2330,8 +2330,8 @@ typedef struct _LDR_MODULE
ULONG Flags;
SHORT LoadCount;
SHORT TlsIndex;
@@ -259,7 +259,7 @@ index b77ab8fe03a..3d4863d8b04 100644
+ LIST_ENTRY HashLinks;
ULONG TimeDateStamp;
HANDLE ActivationContext;
PVOID PatchInformation;
void* Lock;
--
2.26.0

View File

@@ -1,2 +1 @@
Fixes: Implement and use hash links when looking up LDR module
Depends: ntdll-LDR_MODULE