aboutsummaryrefslogtreecommitdiffstats
path: root/UefiLessonsPkg
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 14:53:25 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 14:53:25 +0300
commit0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e (patch)
treef830b1275ee8e2bd75a5515069334ab895a369dc /UefiLessonsPkg
parentb3e465c18f383f5415862ad7680ab2290b24f773 (diff)
downloadUEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.tar.gz
UEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.tar.bz2
UEFI-Lessons-0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e.zip
Add PcdToken guard for Dynamic PCD
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'UefiLessonsPkg')
-rw-r--r--UefiLessonsPkg/PCDLesson/PCDLesson.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/UefiLessonsPkg/PCDLesson/PCDLesson.c b/UefiLessonsPkg/PCDLesson/PCDLesson.c
index 904404f..a3ecfeb 100644
--- a/UefiLessonsPkg/PCDLesson/PCDLesson.c
+++ b/UefiLessonsPkg/PCDLesson/PCDLesson.c
@@ -57,9 +57,13 @@ UefiMain (
Print(L"Status=%r\n", Status);
Print(L"PcdPatchableInt32=%d\n", PatchPcdGet32(PcdPatchableInt32));
//-------
- Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
- PcdSet32S(PcdDynamicInt32, 0xBEEFBEEF);
- Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
+ if (PcdToken(PcdDynamicInt32)) {
+ Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
+ PcdSet32S(PcdDynamicInt32, 0xBEEFBEEF);
+ Print(L"PcdDynamicInt32=0x%x\n", PcdGet32(PcdDynamicInt32));
+ } else {
+ Print(L"PcdDynamicInt32 token is unassigned\n");
+ }
Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
PcdSetEx32S(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32, 0x77777777);