Commit 64f6da09 authored by v0-e's avatar v0-e

jer: Add missing 'fall through' marker comments

parent 522ff88b
...@@ -186,6 +186,7 @@ CHOICE_decode_jer(const asn_codec_ctx_t *opt_codec_ctx, ...@@ -186,6 +186,7 @@ CHOICE_decode_jer(const asn_codec_ctx_t *opt_codec_ctx,
ctx->phase = 1; /* Processing body phase */ ctx->phase = 1; /* Processing body phase */
continue; continue;
} }
/* Fall through */
case JCK_KEY: case JCK_KEY:
case JCK_UNKNOWN: case JCK_UNKNOWN:
......
...@@ -145,11 +145,10 @@ SET_OF_decode_jer(const asn_codec_ctx_t *opt_codec_ctx, ...@@ -145,11 +145,10 @@ SET_OF_decode_jer(const asn_codec_ctx_t *opt_codec_ctx,
ctx->phase = 3; /* Phase out */ ctx->phase = 3; /* Phase out */
RETURN(RC_OK); RETURN(RC_OK);
} }
case JCK_OEND:
/* Fall through */ /* Fall through */
case JCK_OEND:
case JCK_KEY: case JCK_KEY:
case JCK_COMMA: case JCK_COMMA:
case JCK_ASTART: case JCK_ASTART:
if(ctx->phase == 0) { if(ctx->phase == 0) {
JER_ADVANCE(ch_size); 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