diff options
author | Giulio Benetti <giulio.benetti@micronovasrl.com> | 2019-07-10 15:00:24 -0700 |
---|---|---|
committer | Giulio Benetti <giulio.benetti@micronovasrl.com> | 2019-07-10 15:00:24 -0700 |
commit | c55c858c9a6ea2d3fda1cd23c5532c8ab4b267ff (patch) | |
tree | 5b3aab086c33397ecb47ca2d46654dbb8543100a | |
parent | bf2231b86223f7d00ccc0f6d16a7245329a0093c (diff) | |
download | nss-hg-c55c858c9a6ea2d3fda1cd23c5532c8ab4b267ff.tar.gz |
Bug 1561558 - Remove -Wmaybe-uninitialized warning in httpserv.c r=marcusburghardt,jcj
-rw-r--r-- | cmd/httpserv/httpserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/httpserv/httpserv.c b/cmd/httpserv/httpserv.c index 71e2ab88d..c7277f3bd 100644 --- a/cmd/httpserv/httpserv.c +++ b/cmd/httpserv/httpserv.c @@ -463,7 +463,7 @@ handle_connection( char *getData = NULL; /* inplace conversion */ SECItem postData; PRBool isOcspRequest = PR_FALSE; - PRBool isPost; + PRBool isPost = PR_FALSE; postData.data = NULL; postData.len = 0; |