diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-22 12:47:01 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-31 07:50:01 +0200 |
| commit | 80e40a3d2ca735db955807ad0605b43ca22e4e35 (patch) | |
| tree | 4d41d7b53565f833444d3520eb22eed3e8bf26f1 /miasm/loader/pe_init.py | |
| parent | 5d8beb271d9890241a6d61dd476fab26ca37ebbf (diff) | |
| download | focaccia-miasm-80e40a3d2ca735db955807ad0605b43ca22e4e35.tar.gz focaccia-miasm-80e40a3d2ca735db955807ad0605b43ca22e4e35.zip | |
Avoid generate default locationdb
Diffstat (limited to 'miasm/loader/pe_init.py')
| -rw-r--r-- | miasm/loader/pe_init.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm/loader/pe_init.py b/miasm/loader/pe_init.py index 7a8d2abd..3e0c660e 100644 --- a/miasm/loader/pe_init.py +++ b/miasm/loader/pe_init.py @@ -189,7 +189,8 @@ class PE(object): parse_resources=True, parse_delay=True, parse_reloc=True, - wsize=32): + wsize=32, + **kwargs): self._rva = ContectRva(self) self._virt = ContentVirtual(self) self.img_rva = StrPatchwork() |