[openwire] don't THROW() an exception from a dissector

in this case, it's enough to show an expert info and continue dissecting

Change-Id: Iac444dc838d6ba388de38b48bd3ccd38f90f7697
Reviewed-on: https://code.wireshark.org/review/13149
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Martin Kaiser 2016-01-08 19:16:11 +01:00 committed by Michael Mann
parent 67c2710112
commit 25973fabd0
1 changed files with 0 additions and 1 deletions

View File

@ -550,7 +550,6 @@ validate_boolean(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree _U_, int of
if (booleanByte != FALSE && booleanByte != TRUE)
{
expert_add_info(pinfo, boolean_item, &ei_openwire_encoding_not_supported);
THROW(ReportedBoundsError);
}
}