The branch OpenSSL_1_1_0-stable has been updated
       via  8e3f60de0c7d7f34a4d9126e27dd3416d64f2011 (commit)
      from  19c708d77d6b61fbd46c13d43f2b078eae5362f9 (commit)


- Log -----------------------------------------------------------------
commit 8e3f60de0c7d7f34a4d9126e27dd3416d64f2011
Author: Bernd Edlinger <bernd.edlin...@hotmail.de>
Date:   Sat Jan 13 10:24:45 2018 +0100

    Catch SIGPIPE in TLSProxy::Proxy::clientstart
    
    Reviewed-by: Richard Levitte <levi...@openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/5071)
    
    (cherry picked from commit 438e57a43f096d37bf316869b98780e24596a5e8)

-----------------------------------------------------------------------

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 d33637a..70f9bcb 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -279,6 +279,7 @@ sub clientstart
 
     #Wait for either the server socket or the client socket to become readable
     my @ready;
+    local $SIG{PIPE} = "IGNORE";
     while(!(TLSProxy::Message->end) && (@ready = $sel->can_read)) {
         foreach my $hand (@ready) {
             if ($hand == $server_sock) {
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to