aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-23 04:45:56 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-23 04:45:56 +0000
commitd45ac5c2dc6895847aae0500728279125b2b423a (patch)
tree4c88d6749a01be4dbed9926a6fc99d3339ca1899
parenta4f9cb81edb73203245a2d8b7fa8965a9ed00758 (diff)
Get rid of unnecessary function pointer - just directly call the
function in the switch statement. This keeps us from calling through an uninitialized pointer for custome parameter numbers other than LLRP_VENDOR_IMPINJ (as warned of by at least some compilers). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44624 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--epan/dissectors/packet-llrp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/dissectors/packet-llrp.c b/epan/dissectors/packet-llrp.c
index e47bca3ed3..14a33630fb 100644
--- a/epan/dissectors/packet-llrp.c
+++ b/epan/dissectors/packet-llrp.c
@@ -1684,8 +1684,6 @@ dissect_llrp_parameters(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint num;
proto_item *ti;
proto_tree *param_tree;
- guint (*dissect_custom_parameter)(tvbuff_t *tvb,
- packet_info *pinfo, proto_tree *tree, guint offset, guint param_end);
while (((gint)(end - offset)) > 0)
{
@@ -2208,10 +2206,9 @@ dissect_llrp_parameters(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
PARAM_TREE_ADD(vendor_id, 4, ENC_BIG_ENDIAN);
switch(num) {
case LLRP_VENDOR_IMPINJ:
- dissect_custom_parameter = dissect_llrp_impinj_parameter;
+ suboffset = dissect_llrp_impinj_parameter(tvb, pinfo, param_tree, suboffset, param_end);
break;
}
- suboffset = dissect_custom_parameter(tvb, pinfo, param_tree, suboffset, param_end);
break;
}
/* Have we decoded exactly the number of bytes declared in the parameter? */