[gnutls-dev] CVS gnutls/libextra

Simon Josefsson simon at josefsson.org
Thu Jun 14 08:46:42 CEST 2007


Hi Timo!  I noticed your commit in gnutls CVS.  GnuTLS has changed to
use git for development, see:

http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/1829
http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2075
http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/2078

Running git-cvsimport seems to fail, and I'm not sure it is worth the
time to keep importing stuff from the CVS tree any longer.

See http://git.or.cz for documentation on how to use git.

What you can do is to clone the gnutls git repository and ask me to pull
from it, or post patches to the gnutls-dev mailing list and I'll commit
it.  Ludovic has done this for the guile-gnutls changes, and it has
worked rather well.

/Simon

"CVS User twoaday" <twoaday at gnutls.org> writes:

> Update of /cvs/gnutls/gnutls/libextra
> In directory trithemius:/tmp/cvs-serv839
>
> Modified Files:
> 	gnutls_openpgp.c 
> Log Message:
> Check if INP is NULL, not BUF.
> Noted by Ludovic.
>
>
> --- /cvs/gnutls/gnutls/libextra/gnutls_openpgp.c	2007/04/20 12:35:22	1.109
> +++ /cvs/gnutls/gnutls/libextra/gnutls_openpgp.c	2007/06/13 19:01:05	1.110
> @@ -528,7 +528,7 @@
>    uint8_t *buf;
>    size_t buflen;
>  
> -  if (!buf || !raw)
> +  if (!inp || !raw)
>      {
>        gnutls_assert ();
>        return GNUTLS_E_INVALID_REQUEST;
> @@ -539,7 +539,10 @@
>    cdk_free (buf);
>    
>    if (!buflen)
> -    return GNUTLS_E_INTERNAL_ERROR;
> +    {  
> +      gnutls_assert ();
> +      return GNUTLS_E_INTERNAL_ERROR;
> +    }  
>    return 0;
>  }




More information about the Gnutls-devel mailing list