Trim out trailing newlines and stuff

This commit is contained in:
Peter Goodman
2017-12-14 00:56:22 -05:00
parent 622afcdb98
commit 31838780c3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ class DeepState(object):
message.append(format_str % val)
res = "".join(message)
res.rstrip("\r\n")
res.rstrip(" \t\r\n\0")
return res
def _save_test(self, info, input_bytes):
+1 -1
View File
@@ -299,7 +299,7 @@ def main():
try:
project = angr.Project(
args.binary,
use_sim_procedures=False,
use_sim_procedures=True,
translation_cache=True,
support_selfmodifying_code=False,
auto_load_libs=True,