diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2012-08-06 15:20:03 +0000 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2012-08-06 15:20:03 +0000 |
commit | 003a2e0ab906707af711c919e80ccb5b30af9e33 (patch) | |
tree | f6dba145521d619f3bb70dd8d6c4b6c8fe2c7a16 /src/http | |
parent | 78861145069a49fdedc3587f75728429fa690b02 (diff) | |
download | nginx-003a2e0ab906707af711c919e80ccb5b30af9e33.tar.gz nginx-003a2e0ab906707af711c919e80ccb5b30af9e33.zip |
Merge of r4737: r->uri_changed in a named location fix.
Reset r->uri_changed in a named location (ticket #184).
Diffstat (limited to 'src/http')
-rw-r--r-- | src/http/ngx_http_core_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 5bb01d9ea..6d7dc0abe 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -2588,6 +2588,7 @@ ngx_http_named_location(ngx_http_request_t *r, ngx_str_t *name) r->internal = 1; r->content_handler = NULL; + r->uri_changed = 0; r->loc_conf = (*clcfp)->loc_conf; /* clear the modules contexts */ |