From 262e5d900cb3c12af67ddb72108b1ab684dba6fe Mon Sep 17 00:00:00 2001 From: "Aaron Tulino (Aaronjamt)" Date: Mon, 22 Dec 2025 14:08:54 -0700 Subject: [PATCH] Fix compiler errors --- armsrc/seos.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/armsrc/seos.c b/armsrc/seos.c index 20f57ccde..7a6180b7e 100644 --- a/armsrc/seos.c +++ b/armsrc/seos.c @@ -636,9 +636,9 @@ void SimulateSeos(seos_emulate_req_t *msg) { uint8_t *cryptogram = NULL; uint8_t *recvd_cmac = NULL; - uint8_t cryptogram_length; - uint8_t recvd_cmac_length; - uint8_t recvd_cmac_offset; + uint8_t cryptogram_length = 0; + uint8_t recvd_cmac_length = 0; + uint8_t recvd_cmac_offset = 0; // Check all requested OIDs and see if we support any uint8_t tlv_offset = 0;