summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2011-11-25 13:31:47 +0000
committerJim Jagielski <jim@apache.org>2011-11-25 13:31:47 +0000
commit7dd61ce6f57853604a9d18c8b01599d9be990888 (patch)
treef256309e61a26b4f792a42877e4d059d5af6c905
parentb5ee2459cd131f05d7f4ea96f7de934881974afc (diff)
downloadhttpd-7dd61ce6f57853604a9d18c8b01599d9be990888.tar.gz
Merge r1206159 from trunk:
Comment reason for NULL parameter Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1206160 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/util_filter.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/util_filter.c b/server/util_filter.c
index 74dfefba10..3facb8f904 100644
--- a/server/util_filter.c
+++ b/server/util_filter.c
@@ -561,6 +561,10 @@ AP_DECLARE(apr_status_t) ap_pass_brigade_fchk(request_rec *r,
va_start(ap, fmt);
res = apr_pvsprintf(r->pool, fmt, ap);
va_end(ap);
+ /*
+ * Why the NULL?
+ * handle: "error: format not a string literal and no format arguments"
+ */
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, res, NULL);
}
return HTTP_INTERNAL_SERVER_ERROR;