From 62c926e0ddf205aa20a44c8fb18289b3a03f7472 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 8 Dec 2023 19:29:55 +0100 Subject: [PATCH] style --- client/src/cmddata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmddata.c b/client/src/cmddata.c index 74d6e3262..196ff3d29 100644 --- a/client/src/cmddata.c +++ b/client/src/cmddata.c @@ -40,7 +40,7 @@ #include "mbedtls/ctr_drbg.h" // random generator #include "atrs.h" // ATR lookup -uint8_t g_DemodBuffer[MAX_DEMOD_BUF_LEN]; +uint8_t g_DemodBuffer[MAX_DEMOD_BUF_LEN] = { 0x00 }; size_t g_DemodBufferLen = 0; int32_t g_DemodStartIdx = 0; int g_DemodClock = 0;