about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSheidan <sh3idan@gmail.com>2019-01-03 23:11:26 +0100
committerSheidan <sh3idan@gmail.com>2019-01-03 23:11:26 +0100
commitd90e321f7ba0795eef13b10f57474433f75ab85f (patch)
tree441a0471a3bffb90b8c566cca7e2573105543913
parent88e44a47a58544dfcb00888eccfbe9bf2eb0f1b9 (diff)
downloadmiasm-d90e321f7ba0795eef13b10f57474433f75ab85f.tar.gz
miasm-d90e321f7ba0795eef13b10f57474433f75ab85f.zip
fix: typo in ContextException structure
-rw-r--r--miasm2/os_dep/win_32_structs.py2
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")),