Make sure that we find the "data" dissector during handoff else we might crash if the received payload was less than 2 bytes.

Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3893

svn path=/trunk/; revision=29403
This commit is contained in:
Kovarththanan Rajaratnam 2009-08-13 12:17:20 +00:00
parent e7ed279da9
commit 97fda7386c
1 changed files with 1 additions and 0 deletions

View File

@ -10154,6 +10154,7 @@ proto_register_gsm_a_rr(void)
void
proto_reg_handoff_gsm_a_rr(void)
{
data_handle = find_dissector("data");
rrc_irat_ho_info_handle = find_dissector("rrc.irat.irat_ho_info");
rrc_irat_ho_to_utran_cmd_handle = find_dissector("rrc.irat.ho_to_utran_cmd");
}