diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-11-10 11:16:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-10 11:16:27 +0100 |
| commit | c106fd74add334b24533156820072a3558b1a725 (patch) | |
| tree | 89ea8fd4fa11b53829cd7eec49cd30716b1615c2 /miasm2/jitter/vm_mngr.h | |
| parent | 9821e83e79a45e45a99ed89eb8951bd278cc83d8 (diff) | |
| parent | b355224fe635cb2df332f1b97a6f3091c5c7b8cb (diff) | |
| download | miasm-c106fd74add334b24533156820072a3558b1a725.tar.gz miasm-c106fd74add334b24533156820072a3558b1a725.zip | |
Merge pull request #449 from commial/fix/vm-page-addrsize
Fix/vm page addrsize
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/vm_mngr.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/miasm2/jitter/vm_mngr.h b/miasm2/jitter/vm_mngr.h index 13ec065a..d3583b52 100644 --- a/miasm2/jitter/vm_mngr.h +++ b/miasm2/jitter/vm_mngr.h @@ -92,9 +92,8 @@ typedef struct { int memory_pages_number; struct memory_page_node* memory_pages_array; - unsigned int *code_addr_tab; - unsigned int code_bloc_pool_ad_min; - unsigned int code_bloc_pool_ad_max; + uint64_t code_bloc_pool_ad_min; + uint64_t code_bloc_pool_ad_max; uint64_t exception_flags; uint64_t exception_flags_new; |