From 726f72a40673f9a1d47baa23ecbe2acd54f60b2e Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 26 Oct 2008 14:36:25 +0000 Subject: [PATCH] MFB: Fixed compiler warning --- ext/openssl/openssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 1002f19b1c..7d99b5f28a 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -3637,7 +3637,7 @@ PHP_FUNCTION(openssl_pkcs7_encrypt) } } - BIO_reset(infile); + (void)BIO_reset(infile); /* write the encrypted data */ SMIME_write_PKCS7(outfile, p7, infile, flags); @@ -3732,7 +3732,7 @@ PHP_FUNCTION(openssl_pkcs7_sign) goto clean_exit; } - BIO_reset(infile); + (void)BIO_reset(infile); /* tack on extra headers */ if (zheaders) { -- 2.40.0