summaryrefslogtreecommitdiff
path: root/marshal.c
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-07-14 14:03:44 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-07-14 14:04:19 +0900
commitba94404f7021fae41a827e080be6d5dd0bbac8e4 (patch)
treefe0259e6eac63b0824888f5f028bd1f2cb633092 /marshal.c
parent1d46642487d5340cf6c1f17b36ff0f64b0c1595c (diff)
Add /* fall through */ comments
to suppress some Coverity Scan warnings
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/marshal.c b/marshal.c
index 3396d897dd..8f4a0aeb80 100644
--- a/marshal.c
+++ b/marshal.c
@@ -370,12 +370,12 @@ load_mantissa(double d, const char *buf, long len)
do {
m = 0;
switch (len) {
- default: m = *buf++ & 0xff;
+ default: m = *buf++ & 0xff; /* fall through */
#if MANT_BITS > 24
- case 3: m = (m << 8) | (*buf++ & 0xff);
+ case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
#endif
#if MANT_BITS > 16
- case 2: m = (m << 8) | (*buf++ & 0xff);
+ case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
#endif
#if MANT_BITS > 8
case 1: m = (m << 8) | (*buf++ & 0xff);
@@ -1799,6 +1799,7 @@ r_object0(struct load_arg *arg, int *ivp, VALUE extmod)
case 'L': case 'N': case 'O': case 'P': case 'Q': case 'R':
case 'S': case 'T': case 'U': case 'V': case 'X': case 'Y':
if (bs & 1) --dst;
+ /* fall through */
default: bs = 0; break;
}
}