Skip to content

Commit

Permalink
rm commented code
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodruff <[email protected]>
  • Loading branch information
woodruffw committed Feb 2, 2024
1 parent 6249161 commit 7e40255
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/callgraph_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ pub fn trace_unsafety(
let mut tainted_by: HashSet<String> = HashSet::new();
tainted_by.insert(tainted_function.to_string());
while let Some(current_node) = queued_to_traverse.pop() {
// let current_node = queued_to_traverse.pop().unwrap();
if let Some(label_info) = callgraph.label_to_label_info.get(&current_node) {
for caller_node in &label_info.caller_labels {
if !tainted_by.contains(caller_node) {
Expand Down

0 comments on commit 7e40255

Please sign in to comment.