[PATCH] hs20:Remove redundant Null Check

Maneesh Jain maneesh.jain at samsung.com
Thu Oct 27 23:16:27 PDT 2016


Signed-off-by: Maneesh Jain <maneesh.jain at samsung.com>
---
 hs20/server/spp_server.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/hs20/server/spp_server.c b/hs20/server/spp_server.c
index 33e3fa1..51c1d96 100644
--- a/hs20/server/spp_server.c
+++ b/hs20/server/spp_server.c
@@ -1823,10 +1823,8 @@ static xml_node_t * hs20_spp_post_dev_data(struct hs20_svc *ctx,
 	}
 
 	if (strcasecmp(req_reason, "User input completed") == 0) {
-		if (devinfo)
-			db_add_session_devinfo(ctx, session_id, devinfo);
-		if (devdetail)
-			db_add_session_devdetail(ctx, session_id, devdetail);
+		db_add_session_devinfo(ctx, session_id, devinfo);
+		db_add_session_devdetail(ctx, session_id, devdetail);
 		ret = hs20_user_input_complete(ctx, user, realm, dmacc,
 					       session_id);
 		hs20_eventlog_node(ctx, user, realm, session_id,
-- 
1.9.1




More information about the Hostap mailing list