[PATCH] Redundant check removed There was an extra check before return ,which was allready checked once shouldnt be done again.
Bipin Kumar
bipin.k at samsung.com
Fri Dec 9 06:30:24 PST 2016
Signed-off-by: Bipin Kumar <bipin.k at samsung.com>
Signed-off-by: Avichal Agrawal <avichal.a at samsung.com>
---
wpa_supplicant/ctrl_iface_named_pipe.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wpa_supplicant/ctrl_iface_named_pipe.c b/wpa_supplicant/ctrl_iface_named_pipe.c
index 54e0e2f..cc50e3d 100644
--- a/wpa_supplicant/ctrl_iface_named_pipe.c
+++ b/wpa_supplicant/ctrl_iface_named_pipe.c
@@ -392,10 +392,10 @@ static int ctrl_iface_parse(struct ctrl_iface_priv *priv, const char *params)
sddl = os_strstr(params, " SDDL=");
if (sddl)
sddl += 6;
+ else
+ return 0;
}
- if (!sddl)
- return 0;
wpa_printf(MSG_DEBUG, "CTRL: SDDL='%s'", sddl);
os_memset(&priv->attr, 0, sizeof(priv->attr));
--
1.7.9.5
More information about the Hostap
mailing list