1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-04 05:42:12 +03:00
Optimize check for empty strings


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1778067 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2017-01-09 22:08:01 +00:00
parent db852eb4ce
commit cc97ce3e52
8 changed files with 24 additions and 24 deletions

View File

@@ -382,7 +382,7 @@ static int req_parsebody(lua_State *L)
sscanf(start + len + 2,
"Content-Disposition: form-data; name=\"%255[^\"]\"; filename=\"%255[^\"]\"",
key, filename);
if (strlen(key)) {
if (*key) {
req_aprtable2luatable_cb_len(L, key, buffer, vlen);
}
}
@@ -2110,8 +2110,8 @@ static int lua_set_cookie(lua_State *L)
secure ? "Secure;" : "",
expires ? strexpires : "",
httponly ? "HttpOnly;" : "",
strlen(strdomain) ? strdomain : "",
strlen(strpath) ? strpath : "");
*strdomain ? strdomain : "",
*strpath ? strpath : "");
apr_table_add(r->err_headers_out, "Set-Cookie", out);
return 0;