Skip to content

Commit

Permalink
fix(wasm): use default vulnerability config for ir
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoDog896 committed Mar 1, 2024
1 parent 0e2b4cb commit 1610b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/redos-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn ir(regex: &str) -> String {
let parser = Parser::parse(regex);
format!(
"{:#?}",
parser.map(|tree| redos::ir::to_expr(&tree, &tree.expr))
parser.map(|tree| redos::ir::to_expr(&tree, &tree.expr, &Default::default()))
)
}

Expand Down

0 comments on commit 1610b24

Please sign in to comment.