Free up some fw space (#2844)

This commit is contained in:
Totoo 2025-10-28 01:10:09 +01:00 committed by GitHub
parent bf18851b6b
commit b739dd883c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 132 additions and 109 deletions

View file

@ -114,7 +114,7 @@ Optional<capture_metadata> read_metadata_file(const fs::path& path) {
}
bool parse_float_meta(std::string_view str, float& out_val) {
out_val = {};
out_val = 0.0f;
if (str.size() > max_parse_int_length)
return false;