Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2f68a72 authored by Alok Kumar's avatar Alok Kumar Committed by Madan Koyyalamudi
Browse files

qcacmn: Fix compilation issue due to uninitialized variables

After enabling FISA, getting compilation issue in WHUNT due to
-Werror=maybe-uninitialized.

Fix this issue by initializing the uninitialized variables.

Change-Id: I4bdb76ba445630fb09df440f587291f0c3e382ec
CRs-Fixed: 2717632
parent 041b77dd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -690,8 +690,8 @@ hal_rx_insert_flow_entry(struct hal_rx_fst *fst, uint32_t flow_hash,
			 void *flow_tuple_info, uint32_t *flow_idx)
{
	int i;
	void *hal_fse;
	uint32_t hal_hash;
	void *hal_fse = NULL;
	uint32_t hal_hash = 0;
	struct hal_flow_tuple_info hal_tuple_info = { 0 };
	QDF_STATUS status;

@@ -739,8 +739,8 @@ hal_rx_find_flow_from_tuple(struct hal_rx_fst *fst, uint32_t flow_hash,
			    void *flow_tuple_info, uint32_t *flow_idx)
{
	int i;
	void *hal_fse;
	uint32_t hal_hash;
	void *hal_fse = NULL;
	uint32_t hal_hash = 0;
	struct hal_flow_tuple_info hal_tuple_info = { 0 };
	QDF_STATUS status;