Skip to content

Commit

Permalink
increase hashing buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
i512 committed Oct 1, 2024
1 parent 12ab601 commit ace9a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion czkawka_core/src/duplicate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ impl DuplicateFinder {
.map(|(size, vec_file_entry)| {
let mut hashmap_with_hash: BTreeMap<String, Vec<DuplicateEntry>> = Default::default();
let mut errors: Vec<String> = Vec::new();
let mut buffer = [0u8; 1024 * 16];
let mut buffer = [0u8; 1024 * 1024 * 16];

atomic_counter.fetch_add(vec_file_entry.len(), Ordering::Relaxed);
for mut file_entry in vec_file_entry {
Expand Down

0 comments on commit ace9a9e

Please sign in to comment.