[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. 99ae9353f6834da0cb73f59f4b32d1f0ae1263fa

Stephen Gran steve at lobefin.net
Thu Sep 4 12:37:09 UTC 2008


The following commit has been merged in the debian/unstable branch:
commit 881cf57af5d78824007d68d90c2a5da4f478c8f8
Author: Stephen Gran <steve at lobefin.net>
Date:   Thu Sep 4 13:25:56 2008 +0100

    Revert "avoid passing out-of-range values to isalnum (thanks Nigel)"
    
    This reverts commit c321cb83041637af84cfaf53e58b644353cea5cd.

diff --git a/ChangeLog b/ChangeLog
index e379b71..eee1082 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,3 @@
-Sun Mar  9 12:28:22 EET 2008 (edwin)
-------------------------------------
-  * libclamav/regex/regex2.h: avoid passing out-of-range values to isalnum (thanks Nigel)
-
 Fri Mar  7 15:10:47 CET 2008 (tk)
 ---------------------------------
   * Makefile.am,libclamav/lzma/Makefile.am: add licence texts to EXTRA_DIST
diff --git a/libclamav/regex/regex2.h b/libclamav/regex/regex2.h
index 5fd0d65..213fc98 100644
--- a/libclamav/regex/regex2.h
+++ b/libclamav/regex/regex2.h
@@ -154,4 +154,4 @@ struct re_guts {
 
 /* misc utilities */
 #define	OUT	(CHAR_MAX+1)	/* a non-character value */
-#define	ISWORD(c)	(isalnum((c)&0xff) || (c) == '_')
+#define	ISWORD(c)	(isalnum(c) || (c) == '_')

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list