summaryrefslogtreecommitdiffhomepage
path: root/src/meta/pe_get_image_stack_heap_info.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 14:49:53 -0500
committermidipix <writeonce@midipix.org>2016-11-19 14:49:53 -0500
commitfad23f9ed823120339761ffd251f2b1b2c3b2e45 (patch)
tree5c3d7cd2ff06b0b419cd04285889b65020c93818 /src/meta/pe_get_image_stack_heap_info.c
parent945985cb313ada34d002423fbedfdebebcd22edc (diff)
downloadpemagine-fad23f9ed823120339761ffd251f2b1b2c3b2e45.tar.bz2
pemagine-fad23f9ed823120339761ffd251f2b1b2c3b2e45.tar.xz
PE format: union pe_opt_hdr [and friends] --> union pe_raw_opt_hdr.
Diffstat (limited to 'src/meta/pe_get_image_stack_heap_info.c')
-rw-r--r--src/meta/pe_get_image_stack_heap_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meta/pe_get_image_stack_heap_info.c b/src/meta/pe_get_image_stack_heap_info.c
index ec1aba9..922682d 100644
--- a/src/meta/pe_get_image_stack_heap_info.c
+++ b/src/meta/pe_get_image_stack_heap_info.c
@@ -13,7 +13,7 @@ pe_api
int pe_get_image_stack_heap_info(const void * base, struct pe_stack_heap_info * stack_heap_info)
{
uint16_t * magic;
- union pe_opt_hdr * hdr;
+ union pe_raw_opt_hdr * hdr;
if (!(hdr = pe_get_image_opt_hdr_addr(base)))
return 0;