summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-11-09 12:09:24 +0000
committerBen Laurie <ben@openssl.org>1999-11-09 12:09:24 +0000
commit95fdc5eef9f4b9c5cf296dd9d51a39eb07bb0aaa (patch)
tree6b0c7ca6c1fdb2d4df6c080969858376ecdfe6d9 /crypto
parent5fe2085bbaee223088800f00d7e702542579a3d7 (diff)
Fix (spurious) warnings.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/dh/dhtest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c
index 687ce71611..dbdb963828 100644
--- a/crypto/dh/dhtest.c
+++ b/crypto/dh/dhtest.c
@@ -89,7 +89,8 @@ static void MS_CALLBACK cb(int p, int n, void *arg);
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;