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

Commit 888ddad8 authored by Sreelakshmi Gownipalli's avatar Sreelakshmi Gownipalli Committed by Gerrit - the friendly Code Review server
Browse files

diag: dci: Initialize the stat variable before using it



Initialize the stat variable before using it while sending
notification to dci client.

Change-Id: Ie5f98d0f45a797f4f122d8c4e2bae1a92bf4e7c9
Signed-off-by: default avatarSreelakshmi Gownipalli <sgownipa@codeaurora.org>
parent 3a7e7526
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1433,7 +1433,7 @@ void diag_dci_channel_open_work(struct work_struct *work)

void diag_dci_notify_client(int peripheral_mask, int data, int proc)
{
	int stat;
	int stat = 0;
	struct siginfo info;
	struct list_head *start, *temp;
	struct diag_dci_client_tbl *entry = NULL;