summaryrefslogtreecommitdiff
path: root/src/http-header-glue.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-05-05 19:40:48 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-05-06 17:35:00 -0400
commitb288eeafaa0539e461cca2854164919fbddc7fc6 (patch)
tree53c5114fd1cfb9ee67e23e551566cb6a54cbefeb /src/http-header-glue.c
parent2097fe441bbf6a27a6359dbcff328085e202f82a (diff)
downloadlighttpd-git-b288eeafaa0539e461cca2854164919fbddc7fc6.tar.gz
[core] http_response_send_file() mark cold paths
Diffstat (limited to 'src/http-header-glue.c')
-rw-r--r--src/http-header-glue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http-header-glue.c b/src/http-header-glue.c
index b49ac716..095345e9 100644
--- a/src/http-header-glue.c
+++ b/src/http-header-glue.c
@@ -307,7 +307,7 @@ handler_t http_response_reqbody_read_error (request_st * const r, int http_statu
void http_response_send_file (request_st * const r, buffer * const path, stat_cache_entry *sce) {
if (NULL == sce
- || (sce->fd < 0 && 0 != sce->st.st_size)) {
+ || (sce->fd < 0 && __builtin_expect( (0 != sce->st.st_size), 0))) {
sce = stat_cache_get_entry_open(path, r->conf.follow_symlink);
if (NULL == sce) {
r->http_status = (errno == ENOENT) ? 404 : 403;
@@ -315,7 +315,7 @@ void http_response_send_file (request_st * const r, buffer * const path, stat_ca
"not a regular file: %s -> %s", r->uri.path.ptr, path->ptr);
return;
}
- if (sce->fd < 0 && 0 != sce->st.st_size) {
+ if (sce->fd < 0 && __builtin_expect( (0 != sce->st.st_size), 0)) {
r->http_status = (errno == ENOENT) ? 404 : 403;
if (r->conf.log_request_handling) {
log_perror(r->conf.errh, __FILE__, __LINE__,
@@ -325,7 +325,7 @@ void http_response_send_file (request_st * const r, buffer * const path, stat_ca
}
}
- if (!r->conf.follow_symlink
+ if (__builtin_expect( (!r->conf.follow_symlink), 0)
&& 0 != stat_cache_path_contains_symlink(path, r->conf.errh)) {
r->http_status = 403;
if (r->conf.log_request_handling) {
@@ -338,7 +338,7 @@ void http_response_send_file (request_st * const r, buffer * const path, stat_ca
}
/* we only handle regular files */
- if (!S_ISREG(sce->st.st_mode)) {
+ if (__builtin_expect( (!S_ISREG(sce->st.st_mode)), 0)) {
r->http_status = 403;
if (r->conf.log_file_not_found) {
log_error(r->conf.errh, __FILE__, __LINE__,