mirror of
https://github.com/arut/nginx-rtmp-module.git
synced 2025-08-06 15:00:18 +08:00
fixed crash in dash
This commit is contained in:
@ -642,7 +642,7 @@ ngx_rtmp_dash_close_fragments(ngx_rtmp_session_t *s)
|
|||||||
ngx_rtmp_dash_ctx_t *ctx;
|
ngx_rtmp_dash_ctx_t *ctx;
|
||||||
|
|
||||||
ctx = ngx_rtmp_get_module_ctx(s, ngx_rtmp_dash_module);
|
ctx = ngx_rtmp_get_module_ctx(s, ngx_rtmp_dash_module);
|
||||||
if (!ctx->opened) {
|
if (ctx == NULL || !ctx->opened) {
|
||||||
return NGX_OK;
|
return NGX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user