From: Ilia Alshanetsky Date: Sun, 26 Oct 2008 14:36:25 +0000 (+0000) Subject: MFB: Fixed compiler warning X-Git-Tag: BEFORE_HEAD_NS_CHANGE~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=726f72a40673f9a1d47baa23ecbe2acd54f60b2e;p=php MFB: Fixed compiler warning --- 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) {