- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
closed NSPR descriptor. The issue was hard to find, reported several times before and always closed unresolved. More info at the RH bug: https://bugzilla.redhat.com/534176
This commit is contained in:
parent
668dc0ad87
commit
d547d00f2c
6
CHANGES
6
CHANGES
@ -6,6 +6,12 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Kamil Dudka (12 Nov 2009)
|
||||||
|
- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
|
||||||
|
closed NSPR descriptor. The issue was hard to find, reported several times
|
||||||
|
before and always closed unresolved. More info at the RH bug:
|
||||||
|
https://bugzilla.redhat.com/534176
|
||||||
|
|
||||||
Yang Tse (11 Nov 2009)
|
Yang Tse (11 Nov 2009)
|
||||||
- Marco Maggi reported that compilation failed when configured --with-gssapi
|
- Marco Maggi reported that compilation failed when configured --with-gssapi
|
||||||
and GNU GSS installed due to a missing mutual exclusion of header files in
|
and GNU GSS installed due to a missing mutual exclusion of header files in
|
||||||
|
@ -1227,7 +1227,9 @@ CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex)
|
|||||||
connssl->handle = SSL_ImportFD(model, connssl->handle);
|
connssl->handle = SSL_ImportFD(model, connssl->handle);
|
||||||
if(!connssl->handle)
|
if(!connssl->handle)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
PR_Close(model); /* We don't need this any more */
|
PR_Close(model); /* We don't need this any more */
|
||||||
|
model = NULL;
|
||||||
|
|
||||||
/* This is the password associated with the cert that we're using */
|
/* This is the password associated with the cert that we're using */
|
||||||
if (data->set.str[STRING_KEY_PASSWD]) {
|
if (data->set.str[STRING_KEY_PASSWD]) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user