mirror of
https://github.com/nginx/nginx.git
synced 2024-12-20 06:03:31 -06:00
use ngx_strnstr()
This commit is contained in:
parent
35fe5fd06d
commit
a8afe406ce
@ -166,7 +166,7 @@ ngx_http_flv_handler(ngx_http_request_t *r)
|
||||
i = 1;
|
||||
|
||||
if (r->args.len) {
|
||||
p = (u_char *) ngx_strstr(r->args.data, "start=");
|
||||
p = (u_char *) ngx_strnstr(r->args.data, "start=", r->args.len);
|
||||
|
||||
if (p) {
|
||||
p += 6;
|
||||
|
Loading…
Reference in New Issue
Block a user