aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-03-18 07:55:45 +0100
committerAnders Broman <a.broman58@gmail.com>2015-03-18 07:13:48 +0000
commit52a579d4ad7182d1896e8662d481049f9d22cbe0 (patch)
treeca69f4f5a26214fc46fb94b4533ddb3a607fcb3d
parent77b3532958eb5546b44ff91ac889f04b70b0ec4a (diff)
DNS: fix Coverity scan (1238867: Missing Break in switch)
Change-Id: I4f1042cebe527874c3f890411f5e44aa71da5d28 Reviewed-on: https://code.wireshark.org/review/7732 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-dns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dns.c b/epan/dissectors/packet-dns.c
index 2881b275ac..2964961ece 100644
--- a/epan/dissectors/packet-dns.c
+++ b/epan/dissectors/packet-dns.c
@@ -3244,6 +3244,8 @@ dissect_dns_answer(tvbuff_t *tvb, int offsetx, int dns_data_offset,
proto_tree_add_item(rr_tree, hf_dns_openpgpkey, tvb, cur_offset, data_len, ENC_ASCII|ENC_NA);
}
+ break;
+
case T_CSYNC: /* Child-to-Parent Synchronization (62) */
{
int rr_len, initial_offset = cur_offset;