We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cl未初始化为NULL,ngx_live_relay_httpflv_recv_body有可能是赋值不上的,如下修改即可,希望pingos大佬帮review下 --- a/modules/nginx-rtmp-module/ngx_live_relay_httpflv.c +++ b/modules/nginx-rtmp-module/ngx_live_relay_httpflv.c @@ -361,6 +361,7 @@ ngx_live_relay_httpflv_recv_body(void *request, ngx_http_request_t *hcr) ngx_rtmp_stream_t *st = NULL;
s = request;
cl = NULL;
n = ngx_http_client_read_body(hcr, &cl);
@@ -373,6 +374,10 @@ ngx_live_relay_httpflv_recv_body(void *request, ngx_http_request_t *hcr) return; }
return;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cl未初始化为NULL,ngx_live_relay_httpflv_recv_body有可能是赋值不上的,如下修改即可,希望pingos大佬帮review下
--- a/modules/nginx-rtmp-module/ngx_live_relay_httpflv.c
+++ b/modules/nginx-rtmp-module/ngx_live_relay_httpflv.c
@@ -361,6 +361,7 @@ ngx_live_relay_httpflv_recv_body(void *request, ngx_http_request_t *hcr)
ngx_rtmp_stream_t *st = NULL;
cl = NULL;
n = ngx_http_client_read_body(hcr, &cl);
@@ -373,6 +374,10 @@ ngx_live_relay_httpflv_recv_body(void *request, ngx_http_request_t *hcr)
return;
}
The text was updated successfully, but these errors were encountered: