From b59244dd27553a63c8a9e865dd6a1be2284a6049 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 2 Sep 2013 23:14:46 +0000 Subject: Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang svn path=/trunk/; revision=51676 --- epan/dissectors/packet-ncp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-ncp.c') diff --git a/epan/dissectors/packet-ncp.c b/epan/dissectors/packet-ncp.c index 709b4abd9f..ae74dbfc18 100644 --- a/epan/dissectors/packet-ncp.c +++ b/epan/dissectors/packet-ncp.c @@ -410,7 +410,7 @@ dissect_ncp_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, * request packet, so look up the * request value and check the task number */ - request_value = mncp_hash_lookup(conversation, nw_connection, header.task); + /*request_value = mncp_hash_lookup(conversation, nw_connection, header.task);*/ } } else { /* Get request value data */ -- cgit v1.2.1