1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Free g_strdup() allocated memory with g_free()

Memory allocated with g_malloc() must be freed with g_free(). The
allocators may use different memory pools.
This commit is contained in:
Zero King 2019-07-27 18:23:51 +00:00
parent 05d50ffa1b
commit 6c7fa15417

View File

@ -226,7 +226,7 @@ static gboolean irssi_ssl_verify_hostname(X509 *cert, const char *hostname)
} else {
g_warning("No subjectAltNames and no valid common name in certificate");
}
free(cert_subject_cn);
g_free(cert_subject_cn);
}
return matched;