diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-05-13 23:27:39 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-05-13 23:27:39 -0600 |
commit | ae4bbcf4e8bb991ad3106ff0d7799276912c5815 (patch) | |
tree | 9d97791fdc05afd560be33c9d46bfffaaa42739b /imap | |
parent | aac7b10863bcfabe936feb5151e7e11123e13306 (diff) | |
download | alpine-ae4bbcf4e8bb991ad3106ff0d7799276912c5815.tar.xz |
* For a calendar entry with method PUBLISH, we show all entries in the calendar.
When "More Details" is selected for each individual event, the description
of that entry is shown only. When the calendar is opened from the view
attachment list screen, all entries will be shown. Mske sure there are no
memory leaks.
* Reverse some of the changes to make valgrind happy, as this may make Alpine crash
by using memory that was released.
Diffstat (limited to 'imap')
-rw-r--r-- | imap/src/osdep/unix/ssl_unix.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/imap/src/osdep/unix/ssl_unix.c b/imap/src/osdep/unix/ssl_unix.c index ea2df896..4c4d6ef8 100644 --- a/imap/src/osdep/unix/ssl_unix.c +++ b/imap/src/osdep/unix/ssl_unix.c @@ -404,14 +404,12 @@ static char *ssl_validate_cert (X509 *cert,char *host) "Server name does not match certificate"; /* if mismatch, see if in extensions */ if (ret && (ext = X509_get_ext_d2i (cert,NID_subject_alt_name,NIL,NIL)) && - (n = sk_GENERAL_NAME_num (ext))){ + (n = sk_GENERAL_NAME_num (ext))) /* older versions of OpenSSL use "ia5" instead of dNSName */ for (i = 0; ret && (i < n); i++) if ((name = sk_GENERAL_NAME_value (ext,i)) && (name->type = GEN_DNS) && (s = name->d.ia5->data) && ssl_compare_hostnames (host,s)) ret = NIL; - sk_GENERAL_NAME_pop_free(ext, GENERAL_NAME_free); - } } else ret = "Unable to locate common name in certificate"; return ret; |