diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-01-17 20:04:32 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-01-17 20:04:32 +0000 |
commit | ae33d014ad64c380446d8113bc7b2de115ffa23f (patch) | |
tree | 29a2f51bb8ba23c2a698732fc543bed6798d5967 /src/http/ngx_http_script.c | |
parent | 4a32307de74116ec3aca40cd15e37e26e3bddd79 (diff) | |
download | nginx-ae33d014ad64c380446d8113bc7b2de115ffa23f.tar.gz nginx-ae33d014ad64c380446d8113bc7b2de115ffa23f.zip |
nginx-0.3.22-RELEASE importrelease-0.3.22
*) Feature: the ngx_http_perl_module supports the $r->args and
$r->unescape methods.
*) Feature: the method $r->query_string of ngx_http_perl_module was
canceled.
*) Bugfix: segmentation fault was occurred if the "none" or "blocked"
values was specified in the "valid_referers" directive; the bug had
appeared in 0.3.18.
Diffstat (limited to 'src/http/ngx_http_script.c')
-rw-r--r-- | src/http/ngx_http_script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index 4986675a9..b46c9bb35 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c @@ -682,7 +682,7 @@ ngx_http_script_regex_end_code(ngx_http_script_engine_t *e) dst = e->buf.data; src = e->buf.data; - ngx_unescape_uri(&dst, &src, e->pos - e->buf.data); + ngx_unescape_uri(&dst, &src, e->pos - e->buf.data, NGX_UNESCAPE_URI); if (src < e->pos) { dst = ngx_copy(dst, src, e->pos - src); |