diff options
Diffstat (limited to 'src/meta')
-rw-r--r-- | src/meta/pe_get_image_stack_heap_info.c | 2 |
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; |