One more fix for fall through warnings

This commit is contained in:
Sergey Dryabzhinsky 2021-06-03 12:51:03 +03:00
parent d4d762e917
commit 4d15e2c0f1

View file

@ -165,6 +165,9 @@ ngx_rtmp_eval(void *ctx, ngx_str_t *in, ngx_rtmp_eval_t **e, ngx_str_t *out,
case '\\': case '\\':
state = ESCAPE; state = ESCAPE;
continue; continue;
/* fall through */
default:
break;
} }
/* fall through */ /* fall through */