aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-03-08 13:52:16 +0000
committerBill Meier <wmeier@newsguy.com>2011-03-08 13:52:16 +0000
commitd9beb8fcb0197235169625645dc55f756466d668 (patch)
tree9a51bb6967d8f30594824b7daab3cfe90f73d97b /epan/dissectors
parentf28084f7725175917fc6261c8abff160eae13e90 (diff)
From Martin Kaiser: initialize hdr_tag with NO_TAG
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5654 svn path=/trunk/; revision=36163
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-dvbci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dvbci.c b/epan/dissectors/packet-dvbci.c
index ea5f82d435..86fd7b8e41 100644
--- a/epan/dissectors/packet-dvbci.c
+++ b/epan/dissectors/packet-dvbci.c
@@ -1150,7 +1150,7 @@ dissect_dvbci_tpdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_item *ti = NULL;
proto_tree *trans_tree = NULL;
gint offset, status_len;
- guint8 hdr_tag = 0; /* XXX - is 0 a good default value? */
+ guint8 hdr_tag = NO_TAG;
tvbuff_t *payload_tvb = NULL;
proto_item *pi;