summaryrefslogtreecommitdiff
path: root/Tools/CCode/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/CCode/Source')
-rw-r--r--Tools/CCode/Source/PeCoffLoader/BasePeCoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/CCode/Source/PeCoffLoader/BasePeCoff.c b/Tools/CCode/Source/PeCoffLoader/BasePeCoff.c
index 72df90f389..06d4b83af7 100644
--- a/Tools/CCode/Source/PeCoffLoader/BasePeCoff.c
+++ b/Tools/CCode/Source/PeCoffLoader/BasePeCoff.c
@@ -346,7 +346,7 @@ Returns:
}
if (DebugDirectoryEntryFileOffset != 0) {
- for (Index = 0; Index < (DebugDirectoryEntry->Size); Index += Size) {
+ for (Index = 0; Index < DebugDirectoryEntry->Size; Index += sizeof (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY)) {
//
// Read next debug directory entry
//
@@ -438,7 +438,7 @@ Returns:
}
if (DebugDirectoryEntryFileOffset != 0) {
- for (Index = 0; Index < (DebugDirectoryEntry->Size); Index += Size) {
+ for (Index = 0; Index < DebugDirectoryEntry->Size; Index += sizeof (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY)) {
//
// Read next debug directory entry
//