aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-openwire.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2016-01-08 19:16:11 +0100
committerMichael Mann <mmann78@netscape.net>2016-01-10 19:57:50 +0000
commit25973fabd0c3eeeafae08a5cf77ec0a6d5b9414a (patch)
tree5993f9e76a770c8acc5cb738725710a7b57fa9bd /epan/dissectors/packet-openwire.c
parent67c2710112c20667bc54f8109689ade28f782095 (diff)
[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>
Diffstat (limited to 'epan/dissectors/packet-openwire.c')
-rw-r--r--epan/dissectors/packet-openwire.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-openwire.c b/epan/dissectors/packet-openwire.c
index 8a30596c9c..8f5b4f6bef 100644
--- a/epan/dissectors/packet-openwire.c
+++ b/epan/dissectors/packet-openwire.c
@@ -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);
}
}