summaryrefslogtreecommitdiff
path: root/plugins/pdb-ng
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-04-10 16:39:26 -0400
committerMason Reed <mason@vector35.com>2025-04-10 17:19:34 -0400
commit1973b852a1ffc2ea3e050d078a6f2b9933c199a1 (patch)
tree3f5fb2c328dd65ea2dff7b80de1b3e89d87d301e /plugins/pdb-ng
parent2c79a0458cd5bc7af0264d18d8ca2fc1a7894228 (diff)
Fix function type construction leaking in Rust API
Diffstat (limited to 'plugins/pdb-ng')
-rw-r--r--plugins/pdb-ng/src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pdb-ng/src/parser.rs b/plugins/pdb-ng/src/parser.rs
index 101b8868..783a8a2d 100644
--- a/plugins/pdb-ng/src/parser.rs
+++ b/plugins/pdb-ng/src/parser.rs
@@ -261,7 +261,7 @@ impl<'a, S: Source<'a> + 'a> PDBParserInstance<'a, S> {
address, &name.raw_name, type_
)
});
- self.debug_info.add_function(DebugFunctionInfo::new(
+ self.debug_info.add_function(&DebugFunctionInfo::new(
Some(name.short_name.unwrap_or(name.raw_name.clone())),
Some(name.full_name.unwrap_or(name.raw_name.clone())),
Some(name.raw_name),