]> granicus.if.org Git - php/commitdiff
MFB: Fixed compiler warning
authorIlia Alshanetsky <iliaa@php.net>
Sun, 26 Oct 2008 14:36:25 +0000 (14:36 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 26 Oct 2008 14:36:25 +0000 (14:36 +0000)
ext/openssl/openssl.c

index 1002f19b1cd07939e97440248711855de396fc01..7d99b5f28a581b697265af878de4333c0223d79b 100644 (file)
@@ -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) {