2007-02-27 Li Yuan <li.yuan@sun.com>
authorliyuan <liyuan@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 28 Feb 2007 02:55:29 +0000 (02:55 +0000)
committerliyuan <liyuan@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 28 Feb 2007 02:55:29 +0000 (02:55 +0000)
        * libspi/util.c:
        (spi_re_entrant_list_delete_link):
        Bug #412286. Reverse previous patch.
        * configure.in, NEWS: Uprev/release 1.17.2.

git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@890 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
NEWS
README
configure.in
libspi/util.c

index 94df105..7ad6170 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-02-27  Li Yuan <li.yuan@sun.com>
+
+       * libspi/util.c:
+       (spi_re_entrant_list_delete_link):
+       Bug #412286. Reverse previous patch.
+       * configure.in, NEWS: Uprev/release 1.17.2.
+
 2007-02-26  Li Yuan <li.yuan@sun.com>
 
        * libspi/accessible.c:
diff --git a/NEWS b/NEWS
index 37250ac..0a2ad50 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+What's new in at-spi-1.17.2:
+
+* Bugfixes: #412286.
+
 What's new in at-spi-1.17.1:
 
 * Bugfixes: #404584, #401299, #375319. Fixes some build warnings.
diff --git a/README b/README
index 8bf5a44..00d31be 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
 README
 
-at-spi version 1.17.1
+at-spi version 1.17.2
 
 This version of at-spi requires atk 1.17.0 or later.
 
index 3f3c74e..9d240b9 100644 (file)
@@ -2,7 +2,7 @@ AC_INIT(idl/Accessibility.idl)
 
 AT_SPI_MAJOR_VERSION=1
 AT_SPI_MINOR_VERSION=17        
-AT_SPI_MICRO_VERSION=1
+AT_SPI_MICRO_VERSION=2
 AT_SPI_INTERFACE_AGE=0
 AT_SPI_BINARY_AGE=0
 AT_SPI_VERSION="$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION.$AT_SPI_MICRO_VERSION"
index a95b781..5c77669 100644 (file)
@@ -66,7 +66,7 @@ spi_re_entrant_list_delete_link (GList * const *element_ptr)
   next = element->next;
   first_item = (element->prev == NULL);
 
-  element = g_list_remove_link (NULL, element);
+  g_list_remove_link (NULL, element);
 
   for (l = working_list; l; l = l->next)
     {