Closed c01dkit closed 1 year ago
Since the trace_mem_access function in bintrace.py use the name access as parameter, the access = event.init('access') will overwrite this argument, causing access.type always be read.
access
access = event.init('access')
access.type
read
Hi c01dkit,
thank you for the PR. This looks good.
Best Tobi
Since the trace_mem_access function in bintrace.py use the name
access
as parameter, theaccess = event.init('access')
will overwrite this argument, causingaccess.type
always beread
.