From: Nikos Mavrogiannopoulos Date: Sun, 1 Dec 2002 21:55:46 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: gnutls_0_6_0~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c5879eecb11a9da1d7f97bd3bbef23486a067f2;p=thirdparty%2Fgnutls.git *** empty log message *** --- diff --git a/doc/TODO b/doc/TODO index a3820e770b..1f2ffca5b0 100644 --- a/doc/TODO +++ b/doc/TODO @@ -4,8 +4,6 @@ in order to avoid having people working on the same thing. Current list: + Add ability to read PKCS-12 structures (certificate and private key) -* Add more functions to parse DER encoded private keys -* Add option to read the SRP parameters using a callback (server side) * Convert documentation to texinfo format * Add support for certificate CRLs in certificate verification * Audit the code diff --git a/lib/gnutls_dh_primes.c b/lib/gnutls_dh_primes.c index 9eda417692..f9c66b19fd 100644 --- a/lib/gnutls_dh_primes.c +++ b/lib/gnutls_dh_primes.c @@ -450,8 +450,8 @@ int _gnutls_get_rnd_srp_params(gnutls_datum *g, gnutls_datum* p, int bits) if (g->data == NULL || p->data == NULL) { gnutls_assert(); - gnutls_free_datum(&g); - gnutls_free_datum(&p); + gnutls_free_datum(g); + gnutls_free_datum(p); return GNUTLS_E_INTERNAL_ERROR; }