use ngx_strnstr()
This commit is contained in:
parent
2c924bac25
commit
5e1a14b2b1
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue