aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isup.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-isup.c')
-rw-r--r--epan/dissectors/packet-isup.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c
index 22bc4ddd18..065ed4c0b3 100644
--- a/epan/dissectors/packet-isup.c
+++ b/epan/dissectors/packet-isup.c
@@ -4565,7 +4565,6 @@ extern int dissect_codec_mode(proto_tree *tree, tvbuff_t *tvb, int offset, int l
case G_727_Embedded_ADPCM :
/* four bit config data, TODO decode config */
if (len > 2) {
- tempdata = tvb_get_guint8(tvb, offset);
proto_tree_add_item(tree, hf_isup_configuration_data, tvb, offset, 1, ENC_NA);
offset = offset + 1;
}
@@ -4575,7 +4574,6 @@ extern int dissect_codec_mode(proto_tree *tree, tvbuff_t *tvb, int offset, int l
case G_729_Annex_B :
/* three bit config data, TODO decode config */
if (len > 2) {
- tempdata = tvb_get_guint8(tvb, offset);
proto_tree_add_item(tree, hf_isup_configuration_data, tvb, offset, 1, ENC_NA);
offset = offset + 1;
}
@@ -4627,7 +4625,6 @@ extern int dissect_codec_mode(proto_tree *tree, tvbuff_t *tvb, int offset, int l
break;
default:
offset = offset + 1;
- tempdata = tvb_get_guint8(tvb, offset);
proto_tree_add_item(tree, hf_isup_unknown_organisation_identifier, tvb, offset, len, ENC_NA);
offset = offset + len - 1;
break;