aboutsummaryrefslogtreecommitdiff
path: root/src/target/ls1_sap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/ls1_sap.c')
-rw-r--r--src/target/ls1_sap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/ls1_sap.c b/src/target/ls1_sap.c
index bc46ed4d..330042f0 100644
--- a/src/target/ls1_sap.c
+++ b/src/target/ls1_sap.c
@@ -113,7 +113,7 @@ static void ls1_sap_set_instr(struct jtag_tap *tap, uint32_t new_instr)
static void ls1_sap_set_addr_high(struct jtag_tap *tap, uint16_t addr_high)
{
struct scan_field field;
- uint8_t buf[2];
+ uint8_t buf[2] = { 0 };
ls1_sap_set_instr(tap, 0x21);
@@ -130,7 +130,7 @@ static void ls1_sap_memory_cmd(struct jtag_tap *tap, uint32_t address,
int32_t size, bool rnw)
{
struct scan_field field;
- uint8_t cmd[8];
+ uint8_t cmd[8] = { 0 };
ls1_sap_set_instr(tap, 0x24);