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 279731 Details for
Bug 410381
mixing neon and gnome-vfs2 libhttp.so usage is incredibly unreliable
[?]
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]
and the patch to neon to not crash
neon.patch (text/plain), 1.38 KB, created by
Caolan McNamara
on 2007-12-06 13:55:43 UTC
(
hide
)
Description:
and the patch to neon to not crash
Filename:
MIME Type:
Creator:
Caolan McNamara
Created:
2007-12-06 13:55:43 UTC
Size:
1.38 KB
patch
obsolete
>diff -ru neon-0.27.2.orig/src/ne_openssl.c neon-0.27.2/src/ne_openssl.c >--- neon-0.27.2.orig/src/ne_openssl.c 2007-09-16 11:26:53.000000000 +0100 >+++ neon-0.27.2/src/ne_openssl.c 2007-12-06 13:30:19.000000000 +0000 >@@ -542,10 +544,12 @@ > if (mode == NE_SSL_CTX_CLIENT) { > ctx->ctx = SSL_CTX_new(SSLv23_client_method()); > ctx->sess = NULL; >- /* set client cert callback. */ >- SSL_CTX_set_client_cert_cb(ctx->ctx, provide_client_cert); >- /* enable workarounds for buggy SSL server implementations */ >- SSL_CTX_set_options(ctx->ctx, SSL_OP_ALL); >+ if (ctx->ctx) { >+ /* set client cert callback. */ >+ SSL_CTX_set_client_cert_cb(ctx->ctx, provide_client_cert); >+ /* enable workarounds for buggy SSL server implementations */ >+ SSL_CTX_set_options(ctx->ctx, SSL_OP_ALL); >+ } > } else if (mode == NE_SSL_CTX_SERVER) { > ctx->ctx = SSL_CTX_new(SSLv23_server_method()); > } else { >diff -ru neon-0.27.2.orig/src/ne_request.c neon-0.27.2/src/ne_request.c >--- neon-0.27.2.orig/src/ne_request.c 2007-08-22 12:47:19.000000000 +0100 >+++ neon-0.27.2/src/ne_request.c 2007-12-06 13:45:37.000000000 +0000 >@@ -1463,6 +1463,7 @@ > if (ret) { > ne_set_error(sess, "%s: %s", err, ne_sock_error(sess->socket)); > ne_sock_close(sess->socket); >+ sess->socket = NULL; > return NE_CONNECT; > } >
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 410381
:
277011
|
279721
| 279731