Mercurial > pidgin.yaz
changeset 6963:1f39a46b1dd4
[gaim-migrate @ 7510]
This will either leak a file pointer, or not. I'm thinking that when you
close the first handler, it closes the file pointer, from my reading of the
docs. This apparently fixes SimGuy's NSS crash.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 25 Sep 2003 01:48:36 +0000 |
parents | 1ab156496e9e |
children | 88207c8a4b20 |
files | src/ssl-nss.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ssl-nss.c Thu Sep 25 01:19:22 2003 +0000 +++ b/src/ssl-nss.c Thu Sep 25 01:48:36 2003 +0000 @@ -216,7 +216,7 @@ GaimSslNssData *nss_data = GAIM_SSL_NSS_DATA(gsc); if (nss_data->in) PR_Close(nss_data->in); - if (nss_data->fd) PR_Close(nss_data->fd); + /* if (nss_data->fd) PR_Close(nss_data->fd); */ g_free(nss_data); }