diff options
author | Ruediger Pluem <rpluem@apache.org> | 2023-04-11 15:31:27 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2023-04-11 15:31:27 +0200 |
commit | 266f9b2b263c28a0629c0db3bd7b48ddfafda33c (patch) | |
tree | 3aa3aa7c7398aacacf998e4a0bda3a6e78ef2750 | |
parent | * Xforms [skip ci] (diff) | |
download | apache2-266f9b2b263c28a0629c0db3bd7b48ddfafda33c.tar.xz apache2-266f9b2b263c28a0629c0db3bd7b48ddfafda33c.zip |
* Silence 'may be used uninitialized' warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909070 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/md/md_http.c | 2 |
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; |