From 2d6a216618624813b28495701d50c184c9934d77 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Fri, 13 Aug 2010 16:15:00 +0200 Subject: Build the right path when looking at user certs --- libempathy/empathy-tls-verifier.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'libempathy/empathy-tls-verifier.c') diff --git a/libempathy/empathy-tls-verifier.c b/libempathy/empathy-tls-verifier.c index e85d8a750..b71e54828 100644 --- a/libempathy/empathy-tls-verifier.c +++ b/libempathy/empathy-tls-verifier.c @@ -484,16 +484,18 @@ build_gnutls_ca_and_crl_lists (GIOSchedulerJob *job, } else { - const gchar *cert_path; + const gchar *cert_name; - while ((cert_path = g_dir_read_name (dir)) != NULL) + while ((cert_name = g_dir_read_name (dir)) != NULL) { - gchar *contents = NULL; + gchar *contents = NULL, *cert_path = NULL; gsize length = 0; gint res; gnutls_datum_t datum = { NULL, 0 }; gnutls_x509_crt_t cert; + cert_path = g_build_filename (user_certs_dir, cert_name, NULL); + g_file_get_contents (cert_path, &contents, &length, &error); if (error != NULL) @@ -502,6 +504,7 @@ build_gnutls_ca_and_crl_lists (GIOSchedulerJob *job, cert_path, error->message); g_clear_error (&error); + g_free (cert_path); continue; } @@ -522,6 +525,7 @@ build_gnutls_ca_and_crl_lists (GIOSchedulerJob *job, } g_free (contents); + g_free (cert_path); } g_dir_close (dir); -- cgit v1.2.3