Implement capability HTTP and downloads (#54)
All checks were successful
Native code generation / deterministic (push) Successful in 11m59s
Imaging and meshing gate / native (push) Successful in 3m55s
JPEG 2000 feature / linux (push) Successful in 2m26s
Native Rust workspace compile / compile (push) Successful in 3m58s
Skia feature / linux (push) Successful in 31m44s
All checks were successful
Native code generation / deterministic (push) Successful in 11m59s
Imaging and meshing gate / native (push) Successful in 3m55s
JPEG 2000 feature / linux (push) Successful in 2m26s
Native Rust workspace compile / compile (push) Successful in 3m58s
Skia feature / linux (push) Successful in 31m44s
This commit is contained in:
@@ -802,7 +802,7 @@ fn sorted_entries(values: &HashMap<String, OSD>) -> Vec<(&String, &OSD)> {
|
||||
}
|
||||
|
||||
fn decode_base16(value: &str) -> Result<Vec<u8>, &'static str> {
|
||||
if value.len() % 2 != 0 {
|
||||
if !value.len().is_multiple_of(2) {
|
||||
return Err("invalid notation LLSD base16 length");
|
||||
}
|
||||
value
|
||||
|
||||
Reference in New Issue
Block a user