diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-10 16:39:26 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-10 17:19:34 -0400 |
| commit | 1973b852a1ffc2ea3e050d078a6f2b9933c199a1 (patch) | |
| tree | 3f5fb2c328dd65ea2dff7b80de1b3e89d87d301e /plugins/idb_import/src | |
| parent | 2c79a0458cd5bc7af0264d18d8ca2fc1a7894228 (diff) | |
Fix function type construction leaking in Rust API
Diffstat (limited to 'plugins/idb_import/src')
| -rw-r--r-- | plugins/idb_import/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/idb_import/src/lib.rs b/plugins/idb_import/src/lib.rs index 70bbf07c..c554831d 100644 --- a/plugins/idb_import/src/lib.rs +++ b/plugins/idb_import/src/lib.rs @@ -269,7 +269,7 @@ fn parse_id0_section_info( if bnty.is_none() { error!("Unable to convert the function type at {addr:#x}",) } - if !debug_info.add_function(DebugFunctionInfo::new( + if !debug_info.add_function(&DebugFunctionInfo::new( None, None, label.map(str::to_string), |
