remove unnecessary initial values

Change-Id: I0950daa18c4234677d29101fac74f6f6bd977ef3
Reviewed-on: https://code.wireshark.org/review/1354
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
This commit is contained in:
Martin Kaiser 2014-04-24 12:22:28 +02:00 committed by Martin Kaiser
parent 6d6094e349
commit e417e8bc20
1 changed files with 3 additions and 3 deletions

View File

@ -4641,12 +4641,12 @@ dissect_dvbci_lpdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint8 direction)
{
proto_item *ti;
proto_tree *link_tree = NULL;
proto_tree *link_tree;
guint32 payload_len;
guint8 tcid, more_last;
proto_item *pi;
tvbuff_t *payload_tvb = NULL;
fragment_head *frag_msg = NULL;
tvbuff_t *payload_tvb;
fragment_head *frag_msg;
payload_len = tvb_reported_length(tvb);