Revert "Fix ByteInput to properly zero bytes"

This reverts commit e583c105b9.
This commit is contained in:
WillyJL
2025-09-06 03:35:18 +02:00
parent d97155eb2d
commit 5a4a8c71d8

View File

@@ -839,10 +839,6 @@ void byte_input_set_result_callback(
model->callback_context = callback_context;
model->bytes = bytes;
model->bytes_count = bytes_count;
// Zero out the bytes
for(uint8_t i = 0; i < bytes_count; i++) {
model->bytes[i] = 0;
}
},
true);
}