Commit 3baca7ee authored by Richard Levitte's avatar Richard Levitte
Browse files

Variables on the stack must be initialized or we can't depend on any

initial value.  For errline/errorline, we did depend on that, erroneously
parent 1dc179b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ bad:

	if (template != NULL)
		{
		long errline;
		long errline = -1;

		BIO_printf(bio_err,"Using configuration from %s\n",template);
		req_conf=CONF_load(NULL,template,&errline);
+1 −1
Original line number Diff line number Diff line
@@ -447,7 +447,7 @@ bad:

	if (extfile)
		{
		long errorline;
		long errorline = -1;
		X509V3_CTX ctx2;
		if (!(extconf=CONF_load(NULL,extfile,&errorline)))
			{