We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dex
1 parent d992139 commit 5e89e5bCopy full SHA for 5e89e5b
1 file changed
lib/src/modules/dex/mod.rs
@@ -23,6 +23,8 @@ thread_local!(
23
24
#[module_main]
25
fn main(data: &[u8], _meta: Option<&[u8]>) -> Result<Dex, ModuleError> {
26
+ CHECKSUM_CACHE.with(|cache| *cache.borrow_mut() = None);
27
+ SIGNATURE_CACHE.with(|cache| *cache.borrow_mut() = None);
28
match parser::Dex::parse(data) {
29
Ok(dex) => Ok(dex.into()),
30
Err(_) => {
0 commit comments