Vadim Yanitskiy has uploaded this change for review. (
https://gerrit.osmocom.org/11855
Change subject: libmsc/db.c: cosmetic: mark missing breaks in switch as intended
......................................................................
libmsc/db.c: cosmetic: mark missing breaks in switch as intended
Change-Id: I3f4f34ecd0c5bb2d1a675ad5c4669fcffb87f292
Closes: Coverity CID#148209
---
M src/libmsc/db.c
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/55/11855/1
diff --git a/src/libmsc/db.c b/src/libmsc/db.c
index d06db10..b5e7ad8 100644
--- a/src/libmsc/db.c
+++ b/src/libmsc/db.c
@@ -573,9 +573,11 @@
case 2:
if (update_db_revision_2())
goto error;
+ /* fall through */
case 3:
if (update_db_revision_3())
goto error;
+ /* fall through */
case 4:
if (update_db_revision_4())
goto error;
--
To view, visit https://gerrit.osmocom.org/11855
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3f4f34ecd0c5bb2d1a675ad5c4669fcffb87f292
Gerrit-Change-Number: 11855
Gerrit-PatchSet: 1
Gerrit-Owner: Vadim Yanitskiy <[email protected]>