summaryrefslogtreecommitdiff
path: root/modules/dav
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2012-12-09 13:33:29 +0000
committerStefan Fritsch <sf@apache.org>2012-12-09 13:33:29 +0000
commit253b88b0a9620be5c4ea62745c9bc5a983bef3fa (patch)
tree132495920ae848d78ed6fe47a8c79c92c60317ac /modules/dav
parentc91d11e0ca9f0c13cfacaefee04b7d36b3802172 (diff)
downloadhttpd-253b88b0a9620be5c4ea62745c9bc5a983bef3fa.tar.gz
Merge r1398970, r1407853, r1398480, r1398478, r1411862, r1397320:
1398970: Use 'ap_strcasestr' instead of a strdup/str_tolower/strstr sequence 1407853: cppCheck: Suspicious condition. 1398480: cppcheck: arrayIndexThenCheck - change the order of the tests in order to avoid a potential out-of-bound access. 1398478: ccpcheck: duplicateExpression - 'vary_by_language' is tested twice 1411862: Use apr_is_empty_table() instead of getting a table and checking the value of the 'nelts' field. 1397320: remove extra ';' Submitted by: jailletc36 Reviewed by: jailletc36, minfrin, sf git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1418945 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav')
-rw-r--r--modules/dav/main/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dav/main/util.c b/modules/dav/main/util.c
index d076cc45fd..aa08584102 100644
--- a/modules/dav/main/util.c
+++ b/modules/dav/main/util.c
@@ -1578,7 +1578,7 @@ DAV_DECLARE(dav_error *) dav_validate_request(request_rec *r,
err = (*repos_hooks->walk)(&ctx.w, DAV_INFINITY, &multi_status);
if (err == NULL) {
- *response = multi_status;;
+ *response = multi_status;
}
/* else: implies a 5xx status code occurred. */
}