Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. diff --git a/src/libtriton/bindings/python/objects/pyTritonContext.cpp b/src/libtriton/bindings/python/objects/pyTritonContext.cpp
  2. index 9f0c73d..7350ef7 100644
  3. --- a/src/libtriton/bindings/python/objects/pyTritonContext.cpp
  4. +++ b/src/libtriton/bindings/python/objects/pyTritonContext.cpp
  5. @@ -1762,8 +1762,6 @@ namespace triton {
  6.          try {
  7.            auto tags = PyTritonContext_AsTritonContext(self)->getTagsOnMemoryAccess(*PyMemoryAccess_AsMemoryAccess(mem));
  8.  
  9. -          triton::usize size = 0;
  10. -          size = tags.size();
  11.            ret = xPySet_New();
  12.            for (auto it = tags.begin(); it != tags.end(); it++) {
  13.              PySet_Add(ret, PyTag(*it));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement