From 5a4a8c71d85aad53624a126bc02cb4aa827fbad4 Mon Sep 17 00:00:00 2001 From: WillyJL Date: Sat, 6 Sep 2025 03:35:18 +0200 Subject: [PATCH] Revert "Fix ByteInput to properly zero bytes" This reverts commit e583c105b98215e8192dce3a73e8723d20679294. --- applications/services/gui/modules/byte_input.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/applications/services/gui/modules/byte_input.c b/applications/services/gui/modules/byte_input.c index 06bd76d79..c9f689662 100644 --- a/applications/services/gui/modules/byte_input.c +++ b/applications/services/gui/modules/byte_input.c @@ -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); }