Subject: | Coverity #169263: Missing break in switch |
inflate.c:
724 state->mode = TIME;
CID 169263 (#1 of 1): Missing break in switch (MISSING_BREAK)
unterminated_case: The case for value TIME is not terminated by a 'break' statement.
725 case TIME:
726 NEEDBITS(32);
727 if (state->head != Z_NULL)
728 state->head->time = hold;
729 if ((state->flags & 0x0200) && (state->wrap & 4))
730 CRC4(state->check, hold);
731 INITBITS();
732 state->mode = OS;
fallthrough: The above case falls through to this one.
733 case OS: