diff options
| author | Mason Reed <mason@vector35.com> | 2025-01-25 20:10:36 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-01-25 20:10:36 -0500 |
| commit | 174879116fd1ed6805137949e763223acd79784c (patch) | |
| tree | b390d86e7454a711d0a2ee0f2538d9af35b3f5d1 /plugins/pdb-ng/src | |
| parent | 567988ad3cd7da3fac9298e24f733b61d37c1e13 (diff) | |
Fix incorrect immutable borrow for EnumerationBuilder
Diffstat (limited to 'plugins/pdb-ng/src')
| -rw-r--r-- | plugins/pdb-ng/src/type_parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pdb-ng/src/type_parser.rs b/plugins/pdb-ng/src/type_parser.rs index e7f4b06d..1c32bb56 100644 --- a/plugins/pdb-ng/src/type_parser.rs +++ b/plugins/pdb-ng/src/type_parser.rs @@ -1626,7 +1626,7 @@ impl<'a, S: Source<'a> + 'a> PDBParserInstance<'a, S> { ))))); } - let enumeration = EnumerationBuilder::new(); + let mut enumeration = EnumerationBuilder::new(); match self.handle_type_index(data.fields, finder)? { Some(ParsedType::FieldList(fields)) => { |
