[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Wed Apr 13 01:19:20 UTC 2016
The branch master has been updated
via 7a82f778bd23eec978d57679de48def0e5010284 (commit)
from 9d5ac9532c58c8b2d10d5e8ee8029dcb40aecfbe (commit)
- Log -----------------------------------------------------------------
commit 7a82f778bd23eec978d57679de48def0e5010284
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Apr 13 02:43:45 2016 +0200
Fix setting of debug callback in apps/enc.c
Setting the debug callback on the in and out BIOs were done too early.
No debug callback was set on the zlib filter BIO.
Reviewed-by: Tim Hudson <tjh at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/enc.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/apps/enc.c b/apps/enc.c
index 77df79d..7869987 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -323,13 +323,6 @@ int enc_main(int argc, char **argv)
strbuf = app_malloc(SIZE, "strbuf");
buff = app_malloc(EVP_ENCODE_LENGTH(bsize), "evp buffer");
- if (debug) {
- BIO_set_callback(in, BIO_debug_callback);
- BIO_set_callback(out, BIO_debug_callback);
- BIO_set_callback_arg(in, (char *)bio_err);
- BIO_set_callback_arg(out, (char *)bio_err);
- }
-
if (infile == NULL) {
unbuffer(stdin);
in = dup_bio_in(informat);
@@ -381,6 +374,13 @@ int enc_main(int argc, char **argv)
if (out == NULL)
goto end;
+ if (debug) {
+ BIO_set_callback(in, BIO_debug_callback);
+ BIO_set_callback(out, BIO_debug_callback);
+ BIO_set_callback_arg(in, (char *)bio_err);
+ BIO_set_callback_arg(out, (char *)bio_err);
+ }
+
rbio = in;
wbio = out;
@@ -388,6 +388,10 @@ int enc_main(int argc, char **argv)
if (do_zlib) {
if ((bzl = BIO_new(BIO_f_zlib())) == NULL)
goto end;
+ if (debug) {
+ BIO_set_callback(bzl, BIO_debug_callback);
+ BIO_set_callback_arg(bzl, (char *)bio_err);
+ }
if (enc)
wbio = BIO_push(bzl, wbio);
else
More information about the openssl-commits
mailing list