aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-16 17:32:30 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-16 17:32:30 +0000
commitff17023406b33eb2a9406218692d1c809c4d581d (patch)
tree7dee20c41709e0c6d56ed477853d9baa037311ad /epan
parent6733f0a967ff4b29900b6ee20101a3b7f1873308 (diff)
Try to make the OSX buildbot happy.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36669 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rohc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rohc.c b/epan/dissectors/packet-rohc.c
index 9116c70c10..1030862759 100644
--- a/epan/dissectors/packet-rohc.c
+++ b/epan/dissectors/packet-rohc.c
@@ -182,7 +182,7 @@ static const value_string rohc_var_len_vals[] =
static guint32
get_self_describing_var_len_val(tvbuff_t *tvb, proto_tree *tree, int offset, int hf_index, guint8 *val_len){
guint8 oct;
- guint32 val;
+ guint32 val = 0;
int num_bits = 0, bit_offset = offset <<3;
oct = tvb_get_guint8(tvb, offset);