Closed luis261 closed 4 months ago
Just based on some REPL tinkering for now:
>>> ord("\u0000")
0
>>> print(json.dumps(chr(0)))
"\u0000"
>>> chr(0)
'\x00'
I still need to test this in an actual analysis run, then I'll report back here and de-draft the PR.
Ok, I just tested this with another linux run and it works: the only difference between the output file on master
and the one on my branch is that my report doesn't contain the unwanted NUL char.
from #58:
this should fix it.