appease gcc -Wuninitialized

This commit is contained in:
lukem 2005-06-02 04:56:14 +00:00
parent 89f4d29f7d
commit 08ef6270ca
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kexdhs.c,v 1.3 2005/02/13 05:57:26 christos Exp $ */
/* $NetBSD: kexdhs.c,v 1.4 2005/06/02 04:56:14 lukem Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
@ -25,7 +25,7 @@
#include "includes.h"
RCSID("$OpenBSD: kexdhs.c,v 1.2 2004/06/13 12:53:24 djm Exp $");
__RCSID("$NetBSD: kexdhs.c,v 1.3 2005/02/13 05:57:26 christos Exp $");
__RCSID("$NetBSD: kexdhs.c,v 1.4 2005/06/02 04:56:14 lukem Exp $");
#include "xmalloc.h"
#include "key.h"
@ -40,7 +40,7 @@ void
kexdh_server(Kex *kex)
{
BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
DH *dh;
DH *dh = NULL;
Key *server_host_key;
u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL;
u_int sbloblen, klen, kout;