libtasn1-commit
[Top][All Lists]
Advanced

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

[SCM] GNU libtasn1 branch, master, updated. libtasn1_3_5-2-gff3b5c6


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU libtasn1 branch, master, updated. libtasn1_3_5-2-gff3b5c6
Date: Sun, 04 May 2014 10:24:32 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU libtasn1".

http://git.savannah.gnu.org/cgit/libtasn1.git/commit/?id=ff3b5c68cc32e30d19edbbc3a962b2266029f3cc

The branch, master has been updated
       via  ff3b5c68cc32e30d19edbbc3a962b2266029f3cc (commit)
      from  83e082736887afcaec3fd92b06b7fde8b5d78837 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ff3b5c68cc32e30d19edbbc3a962b2266029f3cc
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat May 3 22:45:32 2014 +0200

    Corrected an off-by-one error.
    
    The issue was discovered using the codenomicon TLS suite.

-----------------------------------------------------------------------

Summary of changes:
 lib/decoding.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/decoding.c b/lib/decoding.c
index 0b334fe..16f202a 100644
--- a/lib/decoding.c
+++ b/lib/decoding.c
@@ -149,7 +149,7 @@ asn1_get_tag_der (const unsigned char *der, int der_len,
       /* Long form */
       punt = 1;
       ris = 0;
-      while (punt <= der_len && der[punt] & 128)
+      while (punt < der_len && der[punt] & 128)
        {
 
          if (INT_MULTIPLY_OVERFLOW (ris, 128))


hooks/post-receive
-- 
GNU libtasn1



reply via email to

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