From d547d00f2cfa69e07d6873bbebbc82f3132f1b82 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Thu, 12 Nov 2009 10:54:10 +0000 Subject: - 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 --- lib/nss.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/nss.c b/lib/nss.c index 10d07def8..5c1340fa9 100644 --- a/lib/nss.c +++ b/lib/nss.c @@ -1227,7 +1227,9 @@ CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex) connssl->handle = SSL_ImportFD(model, connssl->handle); if(!connssl->handle) goto error; + PR_Close(model); /* We don't need this any more */ + model = NULL; /* This is the password associated with the cert that we're using */ if (data->set.str[STRING_KEY_PASSWD]) { -- cgit v1.2.3