use 0, not NULL

Submitted by: Nils Larsch
This commit is contained in:
Bodo Möller 2002-08-09 09:39:53 +00:00
parent 56939728b7
commit f912e9293f

View File

@ -87,6 +87,6 @@ int ECDH_compute_key(unsigned char *key, const EC_POINT *pub_key, EC_KEY *eckey)
{
ECDH_DATA *ecdh = ecdh_check(eckey);
if (ecdh == NULL)
return NULL;
return 0;
return ecdh->meth->compute_key(key, pub_key, eckey);
}