diff options
| author | Mason Reed <mason@vector35.com> | 2025-08-03 16:59:02 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-08-06 21:04:39 -0400 |
| commit | 534627a04c77aa6791be25ad04deefa9b37034f5 (patch) | |
| tree | 00d8ec654e7bc1c584207aaa3c9de8b1e9f48710 /plugins/pdb-ng/src | |
| parent | abfd08fe0d92120019c2db275537eb816dd5c3f7 (diff) | |
[Rust] Take download callbacks by reference to avoid boxing
Diffstat (limited to 'plugins/pdb-ng/src')
| -rw-r--r-- | plugins/pdb-ng/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pdb-ng/src/lib.rs b/plugins/pdb-ng/src/lib.rs index 63efd56c..cad1ada0 100644 --- a/plugins/pdb-ng/src/lib.rs +++ b/plugins/pdb-ng/src/lib.rs @@ -195,7 +195,7 @@ fn read_from_sym_store(bv: &BinaryView, path: &str) -> Result<(bool, Vec<u8>)> { "GET", path, vec![], - DownloadInstanceInputOutputCallbacks { + &DownloadInstanceInputOutputCallbacks { read: None, write: Some(Box::new(write)), progress: None, |
