We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da6d67 commit 5c7df17Copy full SHA for 5c7df17
crates/net/dns/src/tree.rs
@@ -203,7 +203,7 @@ impl BranchEntry {
203
n * 5 / 8
204
}
205
206
- let decoded_len = base32_no_padding_decoded_len(hash.bytes().len());
+ let decoded_len = base32_no_padding_decoded_len(hash.len());
207
if !(12..=32).contains(&decoded_len) || hash.chars().any(|c| c.is_whitespace()) {
208
return Err(ParseDnsEntryError::InvalidChildHash(hash.to_string()))
209
0 commit comments