summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2023-04-11 13:31:27 +0000
committerRuediger Pluem <rpluem@apache.org>2023-04-11 13:31:27 +0000
commit266f9b2b263c28a0629c0db3bd7b48ddfafda33c (patch)
tree3aa3aa7c7398aacacf998e4a0bda3a6e78ef2750 /modules
parent93dd568ddcc53de002b6e207ba13dfbc29e3c125 (diff)
downloadhttpd-266f9b2b263c28a0629c0db3bd7b48ddfafda33c.tar.gz
* Silence 'may be used uninitialized' warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909070 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/md/md_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/md/md_http.c b/modules/md/md_http.c
index 0d21e7b14c..d10bf0d3ac 100644
--- a/modules/md/md_http.c
+++ b/modules/md/md_http.c
@@ -212,7 +212,7 @@ static apr_status_t req_create(md_http_request_t **preq, md_http_t *http,
const char *method, const char *url,
struct apr_table_t *headers)
{
- md_http_request_t *req;
+ md_http_request_t *req = NULL;
apr_pool_t *pool;
apr_status_t rv;