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

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