diff options
| author | Brian Potchik <brian@vector35.com> | 2017-10-26 09:55:42 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2017-10-26 09:55:42 -0400 |
| commit | c3c9be356d686a68b73422f17ccca67286d85b21 (patch) | |
| tree | 9a45adbf13c593c4124373e0d3c263348c635931 /python/basicblock.py | |
| parent | 7cbb40a71ffb2583862191b7999e436807f9a0e8 (diff) | |
| parent | 77e09a2d02efbb2d6aa9758b503e37cbe7655f7f (diff) | |
Merge branch 'dev'
Diffstat (limited to 'python/basicblock.py')
| -rw-r--r-- | python/basicblock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/basicblock.py b/python/basicblock.py index 72f31876..26db925d 100644 --- a/python/basicblock.py +++ b/python/basicblock.py @@ -140,7 +140,7 @@ class BasicBlock(object): target = self._create_instance(self.view, core.BNNewBasicBlockReference(edges[i].target)) else: target = None - result.append(BasicBlockEdge(branch_type, self, target, edges[i].backEdge)) + result.append(BasicBlockEdge(branch_type, target, self, edges[i].backEdge)) core.BNFreeBasicBlockEdgeList(edges, count.value) return result |
