Skip to content

Commit f3b16b8

Browse files
committed
fix extraction for 64th bit
1 parent 82b7c64 commit f3b16b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/acts/hashutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ namespace hashutils {
146146
}
147147

148148
for (const auto& v : g_extracted) {
149-
auto e = g_hashMap.find(v);
149+
auto e = g_hashMap.find(v & hashutils::MASK63);
150150
if (e != g_hashMap.end()) {
151151
out << std::hex << v << "," << e->second << "\n";
152152
}

0 commit comments

Comments
 (0)