From: Mike Frysinger Date: Sat, 21 Mar 2015 09:08:41 +0000 (-0400) Subject: Fix malloc define typo X-Git-Tag: OpenSSL_1_0_1n~118 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=117476ba30f6afa3a634c2e2c4860d59fbe06572 Fix malloc define typo Fix compilation failure when SCTP is compiled due to incorrect define. Reported-by: Conrad Kostecki URL: https://bugs.gentoo.org/543828 RT#3758 Signed-off-by: Matt Caswell Reviewed-by: Tim Hudson (cherry picked from commit 7c82e339a677f8546e1456c7a8f6788598a9de43) --- diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index b495db26e1..2e78fd1e96 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -1293,7 +1293,7 @@ static int dgram_sctp_read(BIO *b, char *out, int outl) (socklen_t) (sizeof(sctp_assoc_t) + 256 * sizeof(uint8_t)); authchunks = OPENSSL_malloc(optlen); if (!authchunks) { - BIOerr(BIO_F_DGRAM_SCTP_READ, ERR_R_MALLOC_ERROR); + BIOerr(BIO_F_DGRAM_SCTP_READ, ERR_R_MALLOC_FAILURE); return -1; } memset(authchunks, 0, sizeof(optlen)); @@ -1365,7 +1365,7 @@ static int dgram_sctp_write(BIO *b, const char *in, int inl) char *tmp; data->saved_message.bio = b; if(!(tmp = OPENSSL_malloc(inl))) { - BIOerr(BIO_F_DGRAM_SCTP_WRITE, ERR_R_MALLOC_ERROR); + BIOerr(BIO_F_DGRAM_SCTP_WRITE, ERR_R_MALLOC_FAILURE); return -1; } if (data->saved_message.data)