1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 07:02:21 +01:00
This commit is contained in:
J. Nick Koston
2025-09-23 11:19:32 -05:00
parent e368f4782d
commit f3b685acf9

View File

@@ -240,7 +240,7 @@ bool APIServer::check_password(const uint8_t *password_data, size_t password_len
}
for (size_t i = 0; i < length; i++) {
result |= *left++ ^ *right++;
result |= *left++ ^ *right++; // NOLINT
}
return result == 0;