Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/http
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-10-29 18:10:31 +0300
committerIgor Sysoev <igor@sysoev.ru>2007-10-29 18:10:31 +0300
commit042aaba551f42c6e1af0ce6f3ab1681b88268f40 (patch)
tree9308f6b44dab73247992475abe3062bb84a38af6 /src/http
parent66a780f443d9889bfcf64c2b99ae5d0ce3cf95b3 (diff)
r1553, r1554 merge:
ngx_strnstr()
Diffstat (limited to 'src/http')
-rw-r--r--src/http/modules/ngx_http_flv_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_flv_module.c b/src/http/modules/ngx_http_flv_module.c
index 6fda6baf1..eaf426040 100644
--- a/src/http/modules/ngx_http_flv_module.c
+++ b/src/http/modules/ngx_http_flv_module.c
@@ -167,7 +167,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;