use 256 buffer

This commit is contained in:
chiteroman 2025-01-20 22:54:12 +01:00
parent 25ed3f00f4
commit 51f6832b3c

View File

@ -458,7 +458,7 @@ static std::vector<uint8_t> readFile(const char *path) {
}
static bool checkOtaZip() {
std::array<char, 128> buffer{};
std::array<char, 256> buffer{};
std::string result;
bool found = false;