summaryrefslogtreecommitdiffhomepage
path: root/src/headers/pe_get_image_section_tbl_addr.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-30 19:17:23 -0500
committermidipix <writeonce@midipix.org>2016-11-30 19:17:23 -0500
commit12bebb7780b8bef12565337ad4dca4da80b02f79 (patch)
tree5435c3c37c065c64a1bf1372982dddcf4be7d930 /src/headers/pe_get_image_section_tbl_addr.c
parentc34a35179e922620229413cb9eb0f18cfc33076e (diff)
downloadpemagine-12bebb7780b8bef12565337ad4dca4da80b02f79.tar.bz2
pemagine-12bebb7780b8bef12565337ad4dca4da80b02f79.tar.xz
struct pe_raw_coff_file_hdr: member name normalization.
Diffstat (limited to 'src/headers/pe_get_image_section_tbl_addr.c')
-rw-r--r--src/headers/pe_get_image_section_tbl_addr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/headers/pe_get_image_section_tbl_addr.c b/src/headers/pe_get_image_section_tbl_addr.c
index 9fb3969..3eb8188 100644
--- a/src/headers/pe_get_image_section_tbl_addr.c
+++ b/src/headers/pe_get_image_section_tbl_addr.c
@@ -24,8 +24,8 @@ struct pe_raw_sec_hdr * pe_get_image_section_tbl_addr(const void * base)
return 0;
mark = opt->opt_hdr_32.magic;
- mark += coff->size_of_opt_hdr[1] << 8;
- mark += coff->size_of_opt_hdr[0];
+ mark += coff->cfh_size_of_opt_hdr[1] << 8;
+ mark += coff->cfh_size_of_opt_hdr[0];
return (struct pe_raw_sec_hdr *)mark;
}
@@ -47,8 +47,8 @@ struct pe_raw_sec_hdr * pe_get_image_named_section_addr(const void * base, const
if (!(coff = pe_get_image_coff_hdr_addr(base)))
return 0;
- count = coff->num_of_sections[1] << 8;
- count += coff->num_of_sections[0];
+ count = coff->cfh_num_of_sections[1] << 8;
+ count += coff->cfh_num_of_sections[0];
if ((len = pe_impl_strlen_ansi(name)) > 8) {
/* todo: long name support */