merge/upstream-full #105

Manually merged
jabber.developer merged 407 commits from merge/upstream-full into master 2026-05-26 17:54:34 +00:00
193 changed files with 4320 additions and 26663 deletions
Showing only changes of commit 1ede01ed8c - Show all commits

View File

@@ -346,19 +346,6 @@ void
tlscerts_free(TLSCertificate* cert)
{
if (cert) {
free(cert->serialnumber);
free(cert->subjectname);
free(cert->subject_country);
free(cert->subject_state);
free(cert->subject_distinguishedname);
free(cert->subject_serialnumber);
free(cert->subject_commonname);
free(cert->subject_organisation);
free(cert->subject_organisation_unit);
free(cert->subject_email);
free(cert->issuername);
free(cert->issuer_country);
free(cert->issuer_state);
free(cert->issuer_distinguishedname);
@@ -368,16 +355,26 @@ tlscerts_free(TLSCertificate* cert)
free(cert->issuer_organisation_unit);
free(cert->issuer_email);
free(cert->notbefore);
free(cert->subject_country);
free(cert->subject_state);
free(cert->subject_distinguishedname);
free(cert->subject_serialnumber);
free(cert->subject_commonname);
free(cert->subject_organisation);
free(cert->subject_organisation_unit);
free(cert->subject_email);
free(cert->pubkey_fingerprint);
free(cert->pem);
free(cert->signature_alg);
free(cert->key_alg);
free(cert->notafter);
free(cert->notbefore);
free(cert->issuername);
free(cert->subjectname);
free(cert->serialnumber);
free(cert->fingerprint_sha1);
free(cert->fingerprint_sha256);
free(cert->pubkey_fingerprint);
free(cert->key_alg);
free(cert->signature_alg);
free(cert->pem);
free(cert);
}