From 7828c20e5d1dc6f529795d81e44714cd2757f018 Mon Sep 17 00:00:00 2001 From: Varsha Mishra Date: Wed, 20 Nov 2019 23:10:54 +0530 Subject: [PATCH] qca-wifi: Unref peer before returning. Missing peer unref has been added as part of this change. Change-Id: Ieb29b9d5c28824685d99a2d0d7fdfd6cbb51637a --- dp/wifi3.0/dp_txrx_wds.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dp/wifi3.0/dp_txrx_wds.c b/dp/wifi3.0/dp_txrx_wds.c index 05ecca265b..afee72ade6 100644 --- a/dp/wifi3.0/dp_txrx_wds.c +++ b/dp/wifi3.0/dp_txrx_wds.c @@ -488,6 +488,7 @@ uint8_t dp_tx_need_multipass_process(struct dp_soc *soc, struct dp_vdev *vdev, return DP_VLAN_TAGGED_UNICAST; } + dp_peer_unref_delete(peer); return DP_VLAN_UNTAGGED; }