From: Bodo Möller Date: Fri, 9 Aug 2002 09:39:53 +0000 (+0000) Subject: use 0, not NULL X-Git-Tag: OpenSSL_0_9_7-beta4~203^2~28 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=f912e9293f2f5e63e4cb8df4a029a6989123f05d;ds=sidebyside use 0, not NULL Submitted by: Nils Larsch --- diff --git a/crypto/ecdh/ech_key.c b/crypto/ecdh/ech_key.c index d2fd363168..8b21addf3c 100644 --- a/crypto/ecdh/ech_key.c +++ b/crypto/ecdh/ech_key.c @@ -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); }