[svn] gcry - r1199 - in branches/LIBGCRYPT-1-2-BRANCH: . src
svn author wk
cvs at cvs.gnupg.org
Thu Feb 1 16:14:32 CET 2007
Author: wk
Date: 2007-02-01 16:14:31 +0100 (Thu, 01 Feb 2007)
New Revision: 1199
Modified:
branches/LIBGCRYPT-1-2-BRANCH/ChangeLog
branches/LIBGCRYPT-1-2-BRANCH/NEWS
branches/LIBGCRYPT-1-2-BRANCH/README
branches/LIBGCRYPT-1-2-BRANCH/configure.ac
branches/LIBGCRYPT-1-2-BRANCH/src/secmem.c
Log:
Preparing a new release
Modified: branches/LIBGCRYPT-1-2-BRANCH/ChangeLog
===================================================================
--- branches/LIBGCRYPT-1-2-BRANCH/ChangeLog 2007-01-31 18:00:36 UTC (rev 1198)
+++ branches/LIBGCRYPT-1-2-BRANCH/ChangeLog 2007-02-01 15:14:31 UTC (rev 1199)
@@ -1,3 +1,9 @@
+2007-02-01 Werner Koch <wk at g10code.com>
+
+ Released 1.2.4.
+
+ * configure.ac: Set LT to C13/A2/R3.
+
2006-11-30 Werner Koch <wk at g10code.com>
* autogen.sh: New option --force.
@@ -15,7 +21,7 @@
Released 1.2.3.
- * configure.ac: Set LT to C13/A1/R2.
+ * configure.ac: Set LT to C13/A2/R2.
2006-07-26 Werner Koch <wk at g10code.com>
@@ -30,7 +36,7 @@
Released 1.2.2.
- * configure.ac: Set LT to C13/A1/R1.
+ * configure.ac: Set LT to C13/A2/R1.
2005-09-14 Werner Koch <wk at g10code.com>
Modified: branches/LIBGCRYPT-1-2-BRANCH/NEWS
===================================================================
--- branches/LIBGCRYPT-1-2-BRANCH/NEWS 2007-01-31 18:00:36 UTC (rev 1198)
+++ branches/LIBGCRYPT-1-2-BRANCH/NEWS 2007-02-01 15:14:31 UTC (rev 1199)
@@ -1,9 +1,12 @@
-Noteworthy changes in version 1.2.4
+Noteworthy changes in version 1.2.4 (2007-02-01)
------------------------------------------------
- * Minor bug fixes.
+ * Fixed a bug in the memory allocator which could have been the
+ reason for some of non-duplicable bugs.
+ * Other minor bug fixes.
+
Noteworthy changes in version 1.2.3 (2006-08-28)
------------------------------------------------
Modified: branches/LIBGCRYPT-1-2-BRANCH/README
===================================================================
--- branches/LIBGCRYPT-1-2-BRANCH/README 2007-01-31 18:00:36 UTC (rev 1198)
+++ branches/LIBGCRYPT-1-2-BRANCH/README 2007-02-01 15:14:31 UTC (rev 1199)
@@ -1,8 +1,9 @@
libgcrypt - The GNU crypto library
------------------------------------
- Version 1.2.1
+ Version 1.2.4
- Copyright 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+ Copyright 2000, 2002, 2003, 2004, 2005, 2006,
+ 2007 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
Modified: branches/LIBGCRYPT-1-2-BRANCH/configure.ac
===================================================================
--- branches/LIBGCRYPT-1-2-BRANCH/configure.ac 2007-01-31 18:00:36 UTC (rev 1198)
+++ branches/LIBGCRYPT-1-2-BRANCH/configure.ac 2007-02-01 15:14:31 UTC (rev 1199)
@@ -28,7 +28,7 @@
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
m4_define([my_version], [1.2.4])
-m4_define([my_issvn], [yes])
+m4_define([my_issvn], [no])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|| echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
@@ -41,7 +41,7 @@
# (No interfaces changed: REVISION++)
LIBGCRYPT_LT_CURRENT=13
LIBGCRYPT_LT_AGE=2
-LIBGCRYPT_LT_REVISION=2
+LIBGCRYPT_LT_REVISION=3
# If the API is changed in an incompatible way: increment the next counter.
LIBGCRYPT_CONFIG_API_VERSION=1
Modified: branches/LIBGCRYPT-1-2-BRANCH/src/secmem.c
===================================================================
--- branches/LIBGCRYPT-1-2-BRANCH/src/secmem.c 2007-01-31 18:00:36 UTC (rev 1198)
+++ branches/LIBGCRYPT-1-2-BRANCH/src/secmem.c 2007-02-01 15:14:31 UTC (rev 1199)
@@ -589,7 +589,7 @@
{
return (pool_okay
&& p >= pool
- && p < (const void*)((const char*)pool+pool_size));
+ && p < pool+pool_size);
}
More information about the Gnupg-commits
mailing list