Skip to content

Commit

Permalink
Bug 1561558 - Remove -Wmaybe-uninitialized warning in httpserv.c r=ma…
Browse files Browse the repository at this point in the history
…rcusburghardt,jcj

--HG--
extra : source : 2f3d66e0b4142e4cacf3fe11267176f0371c1b48
  • Loading branch information
giuliobenetti committed Jul 10, 2019
1 parent 659daaa commit 453d97d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/httpserv/httpserv.c
Expand Up @@ -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;
Expand Down

0 comments on commit 453d97d

Please sign in to comment.