Fix (spurious) warnings.
diff --git a/apps/ca.c b/apps/ca.c
index 93f992b..fc3fae2 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -266,7 +266,7 @@
 #undef BSIZE
 #define BSIZE 256
 	MS_STATIC char buf[3][BSIZE];
-	char *randfile;
+	char *randfile=NULL;
 
 #ifdef EFENCE
 EF_PROTECT_FREE=1;
diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c
index 687ce71..dbdb963 100644
--- a/crypto/dh/dhtest.c
+++ b/crypto/dh/dhtest.c
@@ -89,7 +89,8 @@
 
 int main(int argc, char *argv[])
 	{
-	DH *a,*b;
+	DH *a;
+	DH *b=NULL;
 	char buf[12];
 	unsigned char *abuf=NULL,*bbuf=NULL;
 	int i,alen,blen,aout,bout,ret=1;