Unverified Commit 87b80d47 authored by Mouse's avatar Mouse Committed by GitHub

Merge pull request #161 from v0-e/jer-missing-fall-through-comment

jer: Add missing 'fall through' marker comments
parents 8ba0fb77 64f6da09
......@@ -186,6 +186,7 @@ CHOICE_decode_jer(const asn_codec_ctx_t *opt_codec_ctx,
ctx->phase = 1; /* Processing body phase */
continue;
}
/* Fall through */
case JCK_KEY:
case JCK_UNKNOWN:
......
......@@ -145,11 +145,10 @@ SET_OF_decode_jer(const asn_codec_ctx_t *opt_codec_ctx,
ctx->phase = 3; /* Phase out */
RETURN(RC_OK);
}
case JCK_OEND:
/* Fall through */
case JCK_OEND:
case JCK_KEY:
case JCK_COMMA:
case JCK_ASTART:
if(ctx->phase == 0) {
JER_ADVANCE(ch_size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment