summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dvbci.c
diff options
context:
space:
mode:
authorMartin Kaiser <martin@skogar.kaiser.cx>2014-04-24 12:30:40 +0200
committerMartin Kaiser <wireshark@kaiser.cx>2014-04-25 17:53:53 +0000
commitf5165ba0f0b160031fbdb47c084ffcb6d0fbdddd (patch)
tree5ae1f175907666c8a5b3420addbdb9871a95b2f7 /epan/dissectors/packet-dvbci.c
parente417e8bc2090aec6752ed3bb25202a5c731f46b2 (diff)
downloadwireshark-f5165ba0f0b160031fbdb47c084ffcb6d0fbdddd.tar.gz
remove some more unnecessary initial values
Change-Id: If2abfee444c7a4a163fef031d92b7757b5d23855 Reviewed-on: https://code.wireshark.org/review/1355 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan/dissectors/packet-dvbci.c')
-rw-r--r--epan/dissectors/packet-dvbci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-dvbci.c b/epan/dissectors/packet-dvbci.c
index dc5e181225..90ad170ea9 100644
--- a/epan/dissectors/packet-dvbci.c
+++ b/epan/dissectors/packet-dvbci.c
@@ -4161,7 +4161,7 @@ dissect_dvbci_apdu(tvbuff_t *tvb, circuit_t *circuit,
packet_info *pinfo, proto_tree *tree, guint8 direction)
{
proto_item *ti;
- proto_tree *app_tree = NULL;
+ proto_tree *app_tree;
guint32 apdu_len, tag, len_field;
const gchar *tag_str;
gint offset;
@@ -4259,8 +4259,8 @@ dissect_dvbci_spdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint8 direction, guint8 tcid)
{
guint32 spdu_len;
- proto_item *ti = NULL;
- proto_tree *sess_tree = NULL;
+ proto_item *ti;
+ proto_tree *sess_tree;
guint8 tag;
const gchar *tag_str;
circuit_t *circuit = NULL;
@@ -4569,8 +4569,8 @@ dissect_dvbci_tpdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint8 direction, guint8 lpdu_tcid)
{
guint32 tpdu_len, body_len;
- proto_item *ti = NULL;
- proto_tree *trans_tree = NULL;
+ proto_item *ti;
+ proto_tree *trans_tree;
gint offset, status_len;
guint8 hdr_tag = NO_TAG;
tvbuff_t *body_tvb, *payload_tvb = NULL;