summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_request.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_http_request.c')
-rw-r--r--src/nxt_http_request.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nxt_http_request.c b/src/nxt_http_request.c
index 54d1bd27..ccd2b141 100644
--- a/src/nxt_http_request.c
+++ b/src/nxt_http_request.c
@@ -936,9 +936,8 @@ nxt_http_request_access_log(nxt_task_t *task, nxt_http_request_t *r,
return NXT_DECLINED;
}
- nxt_tstr_query(task, r->tstr_query, rtcf->log_expr, &str);
-
- if (nxt_slow_path(nxt_tstr_query_failed(r->tstr_query))) {
+ ret = nxt_tstr_query(task, r->tstr_query, rtcf->log_expr, &str);
+ if (nxt_slow_path(ret != NXT_OK)) {
return NXT_DECLINED;
}
}