aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bacapp.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-03-21 22:18:15 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-03-21 22:18:15 +0000
commit1731fc958e6a34dac1297d4a7f45c6bc9d18bb92 (patch)
tree269fa64813c0501284789720d8309264064148cb /epan/dissectors/packet-bacapp.c
parent5629a3fa00eeb23f3ef0b08c1fb958617ebefc67 (diff)
From Martin Kaiser via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6977 :
The attached (trivial) patch adds some missing breaks in switch-case blocks. This fixes coverity defects #445, #446, #1316 and #1380. svn path=/trunk/; revision=41727
Diffstat (limited to 'epan/dissectors/packet-bacapp.c')
-rw-r--r--epan/dissectors/packet-bacapp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bacapp.c b/epan/dissectors/packet-bacapp.c
index 5824b0586b..02ad2c1a5a 100644
--- a/epan/dissectors/packet-bacapp.c
+++ b/epan/dissectors/packet-bacapp.c
@@ -6250,6 +6250,7 @@ fLoggingRecord (tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, guint
break;
case 3: /* accumulatorStatus */
offset = fEnumeratedTag (tvb, tree, offset, "Accumulator Status: ", BACnetAccumulatorStatus);
+ break;
default:
return offset;
}