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_4_9-44-g732d6d8


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU libtasn1 branch, master, updated. libtasn1_4_9-44-g732d6d8
Date: Tue, 17 Jan 2017 13:44:50 +0000 (UTC)

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=732d6d8ea317937cf6c2c9a44fb3fa10bff8363e

The branch, master has been updated
       via  732d6d8ea317937cf6c2c9a44fb3fa10bff8363e (commit)
      from  963a1f3ce6c550e74a260efd8928757b77119ef2 (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 732d6d8ea317937cf6c2c9a44fb3fa10bff8363e
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Tue Jan 17 14:43:59 2017 +0100

    Cast input to isdigit() to integer
    
    That prevents complaints from isdigit() implementations using
    the input as an array index without casting.
    
    Signed-off-by: Nikos Mavrogiannopoulos <address@hidden>

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

Summary of changes:
 lib/ASN1.y |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ASN1.y b/lib/ASN1.y
index 174ffde..534a9f1 100644
--- a/lib/ASN1.y
+++ b/lib/ASN1.y
@@ -575,7 +575,7 @@ _asn1_yylex ()
 
       /* Is STRING a number? */
       for (k = 0; k < counter; k++)
-        if (!isdigit (string[k]))
+        if (!isdigit ((int)string[k]))
           break;
       if (k >= counter)
         {


hooks/post-receive
-- 
GNU libtasn1



reply via email to

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