Skip to content

Commit

Permalink
fix mem_search
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4sec committed Apr 4, 2017
1 parent 93766b0 commit 856f123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions memorpy/MemWorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,5 @@ def mem_search(self, value, ftype = 'match', protec = PAGE_READWRITE | PAGE_READ
continue

if b:
for name, res in func(b, value, offset):
yield name, res
for res in func(b, value, offset):
yield res

0 comments on commit 856f123

Please sign in to comment.