{
onEnter: function (log, args, state) {
this.b = args[1];
},
onLeave: function (log, retval, state) {
rlen = Memory.readShort(this.b)/8;
uint8arr = new Uint8Array(Memory.readByteArray(this.b.add(0x11), rlen));
var hexStr = '';
for (var i = 0; i < uint8arr.length; i++) {
var hex = (uint8arr[i] & 0xff).toString(16);
hex = (hex.length === 1) ? '0' + hex : hex;
hexStr += hex;
}
log(hexStr);
}
}
{'type': 'error', 'description': 'Error: access violation accessing 0xc49c3000', 'stack': 'Error: access violation accessing 0xc49c3000\n at input:39\n at call (native)\n at invokeCallback (tracer.js:33)\n at tracer.js:42', 'fileName': 'input', 'lineNumber': 39, 'columnNumber': 1}
How to fix this?
{'type': 'error', 'description': 'Error: access violation accessing 0xc49c3000', 'stack': 'Error: access violation accessing 0xc49c3000\n at input:39\n at call (native)\n at invokeCallback (tracer.js:33)\n at tracer.js:42', 'fileName': 'input', 'lineNumber': 39, 'columnNumber': 1}How to fix this?