MarioVilas / winappdbg

WinAppDbg Debugger
444 stars 111 forks source link

typo in breakpoint.py #49

Closed dkw72n closed 5 years ago

dkw72n commented 5 years ago

https://github.com/MarioVilas/winappdbg/blob/e6e003310b9e87ffde7cd4467632db5c22aedf7e/winappdbg/breakpoint.py

Line 2595

        if key not in self.__pageBP:
            msg = "No breakpoint at process %d, address %s"
            address = HexDump.addresS(address)                     # supposed to be `HexDump.address`
            raise KeyError(msg % (dwProcessId, address))
        return self.__pageBP[key]
MarioVilas commented 5 years ago

Thanks!