We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GDB-Python-Utils/gdb_utils.py
Line 22 in 509a91b
the function read_string cloud be simplied.
def read_string(address, count): if (address == 0): return None try: buffer = gdb.inferiors()[0].read_memory(address, count) return buffer.tobytes().decode() except BaseException as err: # print(err) return None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GDB-Python-Utils/gdb_utils.py
Line 22 in 509a91b
the function read_string cloud be simplied.
The text was updated successfully, but these errors were encountered: