summaryrefslogtreecommitdiff
path: root/TrEE/Miniport/TestService.c
diff options
context:
space:
mode:
authorJakobL-MSFT <[email protected]>2024-02-20 23:44:03 -0800
committerGitHub <[email protected]>2024-02-20 23:44:03 -0800
commitcfeff01cef9b504195cee104fc67eee4e1834811 (patch)
tree671c5a832ea20f477b2a1508726a804d596c191b /TrEE/Miniport/TestService.c
parentee0a1ee73dde5be876dbd25ee5ab4b467530a215 (diff)
Fix TrEE Sample (#1124)
* Fix TrEE sample * Fix TrEE sample
Diffstat (limited to 'TrEE/Miniport/TestService.c')
-rw-r--r--TrEE/Miniport/TestService.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TrEE/Miniport/TestService.c b/TrEE/Miniport/TestService.c
index ef465297..77cdfc99 100644
--- a/TrEE/Miniport/TestService.c
+++ b/TrEE/Miniport/TestService.c
@@ -4,8 +4,8 @@
#include <wdmguid.h>
#include <TrustedRuntimeClx.h>
#include "SampleMiniport.h"
-#include <SampleSecureService.h>
-#include <SampleOSService.h>
+#include "..\inc\SampleSecureService.h"
+#include "..\inc\SampleOSService.h"
EVT_TR_CREATE_SECURE_SERVICE_CONTEXT TestServiceCreateSecureServiceContext;
EVT_TR_DESTROY_SECURE_SERVICE_CONTEXT TestServiceDestroySecureServiceContext;
@@ -956,7 +956,7 @@ Test2ServiceTwiceReversed(
goto TestServiceTwiceReversedEnd;
}
- TemporaryBuffer = ExAllocatePoolWithTag(PagedPool,
+ TemporaryBuffer = ExAllocatePool2(PagedPool,
(SIZE_T)Request->InputBufferSize,
'PMET');