summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2024-01-07 19:24:27 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2024-01-07 19:24:27 +0100
commite1fec1b08df9ffa2171af8aca0974b56ce8623ee (patch)
tree2ecf8ad6e13afe8ed4af77b1c05c94ba526da942
parent745eeb334505cb1d9b109ace8fcb00815c508843 (diff)
downloadfuzzer-e1fec1b08df9ffa2171af8aca0974b56ce8623ee.tar.gz
dont stringify args
-rwxr-xr-xrtt-module.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtt-module.js b/rtt-module.js
index 31f426b..c0bc30f 100755
--- a/rtt-module.js
+++ b/rtt-module.js
@@ -132,7 +132,7 @@ module.exports.fuzz = function(fuzzerInputData) {
// console.log(active, action, args)
replay.push(active + "\t" + action + "\t" + JSON.stringify(args))
try {
- state = RULES.action(state, active, action, JSON.stringify(args))
+ state = RULES.action(state, active, action, args)
} catch (e) {
log_crash(replay, state, view, step, active, action, args)
throw new RulesCrashError(e, e.stack)