Fix multiple fallthrough warnings

This commit is contained in:
Anonymous 2017-12-02 19:33:11 +00:00
parent a898a09d87
commit a01cc448ee
No known key found for this signature in database
GPG key ID: E9E00DD357231EB8
6 changed files with 10 additions and 2 deletions

View file

@ -2104,6 +2104,7 @@ ngx_rtmp_hls_video(ngx_rtmp_session_t *s, ngx_rtmp_header_t *h,
ngx_log_error(NGX_LOG_ERR, s->connection->log, 0,
"hls: error appending AUD NAL");
}
/* fall through */
case 9:
aud_sent = 1;
break;

View file

@ -409,9 +409,9 @@ ngx_rtmp_access_rule(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
if (!all) {
break;
}
/* "all" passes through */
#endif
/* fall through */
default: /* AF_INET */

View file

@ -331,6 +331,7 @@ ngx_rtmp_amf_read(ngx_rtmp_amf_ctx_t *ctx, ngx_rtmp_amf_elt_t *elts,
if (elts->type & NGX_RTMP_AMF_OPTIONAL) {
return NGX_OK;
}
/* fall through */
case NGX_ERROR:
return NGX_ERROR;
}
@ -398,6 +399,7 @@ ngx_rtmp_amf_read(ngx_rtmp_amf_ctx_t *ctx, ngx_rtmp_amf_elt_t *elts,
if (ngx_rtmp_amf_get(ctx, &max_index, 4) != NGX_OK) {
return NGX_ERROR;
}
/* fall through */
case NGX_RTMP_AMF_OBJECT:
if (ngx_rtmp_amf_read_object(ctx, data,
@ -592,6 +594,7 @@ ngx_rtmp_amf_write(ngx_rtmp_amf_ctx_t *ctx,
if (ngx_rtmp_amf_put(ctx, &max_index, 4) != NGX_OK) {
return NGX_ERROR;
}
/* fall through */
case NGX_RTMP_AMF_OBJECT:
type8 = NGX_RTMP_AMF_END;

View file

@ -154,6 +154,7 @@ ngx_rtmp_eval(void *ctx, ngx_str_t *in, ngx_rtmp_eval_t **e, ngx_str_t *out,
name.len = p - name.data;
ngx_rtmp_eval_append_var(ctx, &b, e, &name, log);
/* fall through */
case NORMAL:
switch (c) {

View file

@ -76,9 +76,9 @@ ngx_rtmp_init_connection(ngx_connection_t *c)
break;
#endif
case AF_UNIX:
unix_socket = 1;
/* fall through */
default: /* AF_INET */
sin = (struct sockaddr_in *) sa;
@ -110,6 +110,7 @@ ngx_rtmp_init_connection(ngx_connection_t *c)
case AF_UNIX:
unix_socket = 1;
/* fall through */
default: /* AF_INET */
addr = port->addrs;

View file

@ -1120,6 +1120,7 @@ ngx_rtmp_notify_parse_http_header(ngx_rtmp_session_t *s,
n = 0;
state = parse_name;
/* fall through */
case parse_name:
switch (c) {
@ -1147,6 +1148,7 @@ ngx_rtmp_notify_parse_http_header(ngx_rtmp_session_t *s,
break;
}
state = parse_value;
/* fall through */
case parse_value:
if (c == '\n') {