From: liyuan Date: Wed, 28 Feb 2007 02:55:29 +0000 (+0000) Subject: 2007-02-27 Li Yuan X-Git-Tag: AT_SPI2_ATK_2_12_0~852 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=commitdiff_plain;h=038cfc4bb3e28cfe9c82cb3b0521d7d070c392a4 2007-02-27 Li Yuan * 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 --- diff --git a/ChangeLog b/ChangeLog index 94df105..7ad6170 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-02-27 Li Yuan + + * 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 * libspi/accessible.c: diff --git a/NEWS b/NEWS index 37250ac..0a2ad50 100644 --- 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 --- 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. diff --git a/configure.in b/configure.in index 3f3c74e..9d240b9 100644 --- a/configure.in +++ b/configure.in @@ -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" diff --git a/libspi/util.c b/libspi/util.c index a95b781..5c77669 100644 --- a/libspi/util.c +++ b/libspi/util.c @@ -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) {