[openssl-commits] [openssl] master update
bernd.edlinger at hotmail.de
bernd.edlinger at hotmail.de
Sat Jan 13 13:58:26 UTC 2018
The branch master has been updated
via 438e57a43f096d37bf316869b98780e24596a5e8 (commit)
from 8f26f9d5811f0d4faa7d0763e0481a434a9ddc5a (commit)
- Log -----------------------------------------------------------------
commit 438e57a43f096d37bf316869b98780e24596a5e8
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Sat Jan 13 10:24:45 2018 +0100
Catch SIGPIPE in TLSProxy::Proxy::clientstart
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5071)
-----------------------------------------------------------------------
Summary of changes:
util/perl/TLSProxy/Proxy.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index 99b0ded..cc21bd6 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -294,6 +294,7 @@ sub clientstart
#Wait for either the server socket or the client socket to become readable
my @ready;
my $ctr = 0;
+ local $SIG{PIPE} = "IGNORE";
while( (!(TLSProxy::Message->end)
|| (defined $self->sessionfile()
&& (-s $self->sessionfile()) == 0))
More information about the openssl-commits
mailing list