Blame SOURCES/0003-8021qaz-squelch-initialization-errors.patch

db1822
From ff70e2edbf79355527660c4df7a554bd66d3a1fb Mon Sep 17 00:00:00 2001
db1822
From: Aaron Conole <aconole@redhat.com>
db1822
Date: Wed, 25 Aug 2021 10:29:19 -0400
db1822
Subject: [PATCH 3/8] 8021qaz: squelch initialization errors
db1822
db1822
Some static analysis tools (like coverity) flag this array
db1822
as accessed without proper initialization.  Squelch by forcing
db1822
initialization.
db1822
db1822
closes https://github.com/intel/openlldp/issues/77
db1822
Signed-off-by: Aaron Conole <aconole@redhat.com>
db1822
---
db1822
 lldp_8021qaz_clif.c | 2 +-
db1822
 1 file changed, 1 insertion(+), 1 deletion(-)
db1822
db1822
diff --git a/lldp_8021qaz_clif.c b/lldp_8021qaz_clif.c
db1822
index f776392..9031cb0 100644
db1822
--- a/lldp_8021qaz_clif.c
db1822
+++ b/lldp_8021qaz_clif.c
db1822
@@ -253,7 +253,7 @@ static void ieee8021qaz_print_app_tlv(u16 len, char *info)
db1822
 {
db1822
 	u8 app, app_idx, app_prio, app_sel;
db1822
 	u16 proto, offset = 2;
db1822
-	u8 dscp[MAX_USER_PRIORITIES][MAX_APP_ENTRIES];
db1822
+	u8 dscp[MAX_USER_PRIORITIES][MAX_APP_ENTRIES] = {0};
db1822
 	u8 dscp_count[MAX_USER_PRIORITIES] = {0};
db1822
 	u8 i, j;
db1822
 	bool first_app = true;
db1822
-- 
db1822
2.31.1
db1822