Initialize feedback_data_len to avoid a compiler warning.

svn path=/trunk/; revision=36666
This commit is contained in:
Stig Bjørlykke 2011-04-16 16:37:53 +00:00
parent 05172d4476
commit 1bc2077b3e
1 changed files with 2 additions and 2 deletions

View File

@ -480,7 +480,7 @@ dissect_rohc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *rohc_tree, *ir_tree, *sub_tree;
int offset = 0, length, x_bit_offset;
guint8 oct, code, size , cid, profile;
gint16 feedback_data_len;
gint16 feedback_data_len = 0;
gboolean is_add_cid = FALSE, d = FALSE;
length = tvb_length(tvb);
@ -980,4 +980,4 @@ proto_reg_handoff_rohc(void)
rohc_handle = create_dissector_handle(dissect_rohc, proto_rohc);
dissector_add_uint("ethertype", ETHERTYPE_ROHC, rohc_handle);
}
}