aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btrfcomm.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-12-02 15:21:53 +0000
committerEvan Huus <eapache@gmail.com>2012-12-02 15:21:53 +0000
commit2461373edd7260ffc2c540dd9682f92fd05f5ebb (patch)
treeb2edc1b679a79a6bea0aeda1103d70623b4b0fd1 /epan/dissectors/packet-btrfcomm.c
parent0ff0068c48ba11ca0e8a8f58393f54370699241e (diff)
Remove unneeded variable initializers.
svn path=/trunk/; revision=46328
Diffstat (limited to 'epan/dissectors/packet-btrfcomm.c')
-rw-r--r--epan/dissectors/packet-btrfcomm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-btrfcomm.c b/epan/dissectors/packet-btrfcomm.c
index c9fa6f25f2..84629e7141 100644
--- a/epan/dissectors/packet-btrfcomm.c
+++ b/epan/dissectors/packet-btrfcomm.c
@@ -275,8 +275,8 @@ dissect_ctrl_pn(packet_info *pinfo, proto_tree *t, tvbuff_t *tvb, int offset, in
{
proto_tree *st;
proto_item *ti;
- proto_tree *dlci_tree = NULL;
- proto_item *dlci_item = NULL;
+ proto_tree *dlci_tree;
+ proto_item *dlci_item;
int mcc_dlci;
int cl;
dlci_state_t *dlci_state;
@@ -362,8 +362,8 @@ dissect_ctrl_msc(proto_tree *t, tvbuff_t *tvb, int offset, int length, guint8 *m
proto_tree *st;
proto_item *it;
- proto_tree *dlci_tree = NULL;
- proto_item *dlci_item = NULL;
+ proto_tree *dlci_tree;
+ proto_item *dlci_item;
guint8 mcc_dlci;
guint8 status;
int start_offset;