MarioVilas/winappdbg

The inheritance of read function in TextPattern does not pass parameters properly

Closed this issue · 1 comments

data = super(TextPattern, self).read(address, size)

it should be

data = super(TextPattern, self).read(process, address, size)

and also meet the same problem in #11 . it is fixed in 0bab913. (i'm using v1.5 from PyPi.)

Thanks for the bug report! Fixed now :)