Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1481601 Details for
Bug 1626107
Net::FTP: closing data connection occasionally fails with "Timeout"
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix ported to perl-5.16.3
perl-5.16.3-Catch-timeout-condition-while-doing-an-abort.patch (text/plain), 967 bytes, created by
Petr Pisar
on 2018-09-07 14:56:01 UTC
(
hide
)
Description:
Fix ported to perl-5.16.3
Filename:
MIME Type:
Creator:
Petr Pisar
Created:
2018-09-07 14:56:01 UTC
Size:
967 bytes
patch
obsolete
>From 94806970680d8f6dbb62a3ddb128aa8f5f9a6e15 Mon Sep 17 00:00:00 2001 >From: Graham Barr <gbarr@pobox.com> >Date: Fri, 7 Sep 2018 16:37:02 +0200 >Subject: [PATCH] Catch timeout condition while doing an abort >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Petr Pisar: Ported to perl-5.16.3. > >CPAN RT#18504 > >Signed-off-by: Petr PÃsaÅ <ppisar@redhat.com> >--- > cpan/libnet/Net/FTP/dataconn.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/cpan/libnet/Net/FTP/dataconn.pm b/cpan/libnet/Net/FTP/dataconn.pm >index e7645cb..bc6ba7f 100644 >--- a/cpan/libnet/Net/FTP/dataconn.pm >+++ b/cpan/libnet/Net/FTP/dataconn.pm >@@ -63,7 +63,7 @@ sub close { > > if (exists ${*$data}{'net_ftp_bytesread'} && !${*$data}{'net_ftp_eof'}) { > my $junk; >- $data->read($junk, 1, 0); >+ eval { local($SIG{__DIE__}); $data->read($junk, 1, 0) }; > return $data->abort unless ${*$data}{'net_ftp_eof'}; > } > >-- >2.14.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1626107
:
1481338
| 1481601