diff options
author | Jeff Trawick <trawick@apache.org> | 2013-10-23 12:03:04 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2013-10-23 12:03:04 +0000 |
commit | d0848999d5dc7a6c2f98430e50a265ad21b3273c (patch) | |
tree | 13a5d18f99716d38e91c311ed71a559d2a69e7f9 /modules/apreq | |
parent | a8fbe8c2f05127ca4c8aa45f07cbeee6f40af9ca (diff) | |
download | httpd-d0848999d5dc7a6c2f98430e50a265ad21b3273c.tar.gz |
axe some useless assignments (clang scan-build)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1534997 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/apreq')
-rw-r--r-- | modules/apreq/handle.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/apreq/handle.c b/modules/apreq/handle.c index d2bdca7ac0..d6c73bf523 100644 --- a/modules/apreq/handle.c +++ b/modules/apreq/handle.c @@ -208,7 +208,6 @@ static apreq_param_t *apache2_body_get(apreq_handle_t *handle, const char *name) h->next = ctx->parser->hook; h->ctx = hook_ctx; ctx->parser->hook = h; - h->ctx = hook_ctx; hook_ctx->name = name; hook_ctx->param = NULL; hook_ctx->prev = ctx->parser->hook; |