summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-mpls.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-01-26 20:41:55 +0000
committerBill Meier <wmeier@newsguy.com>2013-01-26 20:41:55 +0000
commit6fe0b4cf125000fa1f2d88fc876eaf54d1159340 (patch)
tree8b4971cacfc1179f3528709c8f04884680dd206b /epan/dissectors/packet-mpls.c
parent3c66ac4b83bebd3d93b86074db48f6597cdb94cd (diff)
downloadwireshark-6fe0b4cf125000fa1f2d88fc876eaf54d1159340.tar.gz
Init several hf... vars to -1.
(found by checkhf) svn path=/trunk/; revision=47308
Diffstat (limited to 'epan/dissectors/packet-mpls.c')
-rw-r--r--epan/dissectors/packet-mpls.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-mpls.c b/epan/dissectors/packet-mpls.c
index 2a852aa107..0b5ca2416c 100644
--- a/epan/dissectors/packet-mpls.c
+++ b/epan/dissectors/packet-mpls.c
@@ -220,11 +220,11 @@ static const enum_val_t mpls_default_payload_defs[] = {
/* For RFC6391 - Flow aware transport of pseudowire over a mpls PSN*/
static gboolean mpls_bos_flowlabel = FALSE;
-static int hf_mpls_label;
-static int hf_mpls_label_special;
-static int hf_mpls_exp;
-static int hf_mpls_bos;
-static int hf_mpls_ttl;
+static int hf_mpls_label = -1;
+static int hf_mpls_label_special = -1;
+static int hf_mpls_exp = -1;
+static int hf_mpls_bos = -1;
+static int hf_mpls_ttl = -1;
static gint mpls_default_payload = 0;