Unverified Commit 14d9fe62 by Enkelmann Committed by GitHub

Suppress panic on invalid utf-8 in CWE78 check (#237)

parent a497d27a
...@@ -227,7 +227,7 @@ impl State { ...@@ -227,7 +227,7 @@ impl State {
self.string_constants.insert(format_string.to_string()); self.string_constants.insert(format_string.to_string());
} }
// TODO: Change to log // TODO: Change to log
Err(e) => panic!("{}", e), Err(_e) => (),
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment