summaryrefslogtreecommitdiffstats
path: root/src/lib/cc
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2018-08-17 10:20:26 +0200
committerFrancis Dupont <fdupont@isc.org>2018-08-17 10:20:26 +0200
commit561753ac8e553a40c7f6ee68db9df085901e237c (patch)
tree86111aaf31ef8720e1af62473901fd91fdee2273 /src/lib/cc
parentReplaced gitlab issue number by merge request one. (diff)
downloadkea-561753ac8e553a40c7f6ee68db9df085901e237c.tar.xz
kea-561753ac8e553a40c7f6ee68db9df085901e237c.zip
[master] Avoid unwanted fallthrough
Diffstat (limited to 'src/lib/cc')
-rw-r--r--src/lib/cc/json_feed.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/cc/json_feed.cc b/src/lib/cc/json_feed.cc
index 3ea8040615..27b311124b 100644
--- a/src/lib/cc/json_feed.cc
+++ b/src/lib/cc/json_feed.cc
@@ -241,6 +241,7 @@ JSONFeed::receiveStartHandler() {
feedFailure("invalid first character " + std::string(1, c));
break;
}
+ break;
default:
invalidEventError("receiveStartHandler", getNextEvent());