We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3fd5c2 commit a4b5774Copy full SHA for a4b5774
NEWS
@@ -1,3 +1,5 @@
1
+- Fixed crash bug in STARTTLS handling of loaded DH parameters.
2
+
3
-------------------------------------------------------------------------------
4
Changes in version 2.20
5
starttls-gnutls.c
@@ -138,7 +138,7 @@ const response* starttls_init(void)
138
return NULL;
139
}
140
gnutls_certificate_set_dh_params(x509_cred, dh_params);
141
- gnutls_dh_params_deinit(dh_params);
+ /* Don't deinit the dh_params, since the above only stores a pointer to the params. */
142
143
144
gnutls_init(&gsession, GNUTLS_SERVER);
0 commit comments