diff options
| author | Camille Mougey <commial@gmail.com> | 2019-01-04 08:41:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-04 08:41:46 +0100 |
| commit | 23f8ec26959d258e3613e94a66822c61eb6b5204 (patch) | |
| tree | 441a0471a3bffb90b8c566cca7e2573105543913 | |
| parent | 88e44a47a58544dfcb00888eccfbe9bf2eb0f1b9 (diff) | |
| parent | d90e321f7ba0795eef13b10f57474433f75ab85f (diff) | |
| download | miasm-23f8ec26959d258e3613e94a66822c61eb6b5204.tar.gz miasm-23f8ec26959d258e3613e94a66822c61eb6b5204.zip | |
Merge pull request #917 from Sh3idan/fix-typo-win-structs
fix: typo in ContextException structure
Diffstat (limited to '')
| -rw-r--r-- | miasm2/os_dep/win_32_structs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/os_dep/win_32_structs.py b/miasm2/os_dep/win_32_structs.py index e76eb0a9..ffe6afc4 100644 --- a/miasm2/os_dep/win_32_structs.py +++ b/miasm2/os_dep/win_32_structs.py @@ -200,7 +200,7 @@ class TEB(MemStruct): class ContextException(MemStruct): fields = [ - ("ContectFlags", Num("<I")), + ("ContextFlags", Num("<I")), ("dr0", Num("<I")), ("dr1", Num("<I")), ("dr2", Num("<I")), |