aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ncp.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:14:46 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-02 23:14:46 +0000
commitb59244dd27553a63c8a9e865dd6a1be2284a6049 (patch)
tree688331b697041d95e861500df289fb78580a2817 /epan/dissectors/packet-ncp.c
parent1c28ae3b553b556e25c66190db686c36f4492a8e (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=51676
Diffstat (limited to 'epan/dissectors/packet-ncp.c')
-rw-r--r--epan/dissectors/packet-ncp.c2
1 files changed, 1 insertions, 1 deletions
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 */