summaryrefslogtreecommitdiffhomepage
path: root/src/logic/pe_get_image_meta.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/logic/pe_get_image_meta.c')
-rw-r--r--src/logic/pe_get_image_meta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/pe_get_image_meta.c b/src/logic/pe_get_image_meta.c
index 70a057b..8301bfc 100644
--- a/src/logic/pe_get_image_meta.c
+++ b/src/logic/pe_get_image_meta.c
@@ -168,7 +168,7 @@ int pe_get_image_meta(
int i,s;
long l;
unsigned j;
- unsigned char * mark;
+ const unsigned char * mark;
struct pe_image_meta * m;
char * base;
@@ -189,7 +189,7 @@ int pe_get_image_meta(
return pe_free_image_meta_impl(
m,PERK_CUSTOM_ERROR(dctx,ret));
- mark = image->addr + m->coff.ptr_to_sym_tbl;
+ mark = (const unsigned char *)image->addr + m->coff.ptr_to_sym_tbl;
mark += m->coff.num_of_syms * sizeof(struct pe_coff_sym_entry);
m->coff.ptr_to_string_tbl = m->coff.ptr_to_sym_tbl;