about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitload.py
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-10-23 11:28:35 +0200
committerCamille Mougey <camille.mougey@cea.fr>2015-10-23 13:29:07 +0200
commita20c8b6c59805240cc802b2558739aa12d1503e2 (patch)
tree65dc00dc75133b60a5a3b2eefbf24fe10c45448b /miasm2/jitter/jitload.py
parentdcf8369b123ec2fdfc3a0120b46d0770b8fba7c0 (diff)
downloadmiasm-a20c8b6c59805240cc802b2558739aa12d1503e2.tar.gz
miasm-a20c8b6c59805240cc802b2558739aa12d1503e2.zip
Jitload: CallbackHandler.__call__ should only be a wrapper
Diffstat (limited to '')
-rw-r--r--miasm2/jitter/jitload.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py
index 68061c75..3c07d41a 100644
--- a/miasm2/jitter/jitload.py
+++ b/miasm2/jitter/jitload.py
@@ -151,7 +151,8 @@ class CallbackHandlerBitflag(CallbackHandler):
 
             if b & bitflag != 0:
                 # If the flag matched
-                for res in self.call_callbacks(b, *args):
+                for res in super(CallbackHandlerBitflag,
+                                 self).call_callbacks(b, *args):
                     if res is not True:
                         yield res