gnutls-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [gnutls-dev] CVS gnutls/libextra


From: Simon Josefsson
Subject: Re: [gnutls-dev] CVS gnutls/libextra
Date: Thu, 14 Jun 2007 08:46:42 +0200
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.0.95 (gnu/linux)

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" <address@hidden> 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;
>  }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]