Hello community,

here is the log from the commit of package at-spi2-core for openSUSE:Factory 
checked in at 2015-10-25 19:12:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and      /work/SRC/openSUSE:Factory/.at-spi2-core.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "at-spi2-core"

Changes:
--------
--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes        
2015-10-06 16:32:39.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new/at-spi2-core.changes   
2015-10-25 19:12:20.000000000 +0100
@@ -1,0 +2,10 @@
+Mon Oct 12 20:06:16 UTC 2015 - [email protected]
+
+- Update to version 2.18.1:
+  + Don't crash if we get a children-changed event with a
+    non-existent child (bgo#755951).
+  + atspi_hyperlink_get_index_range: don't return random values if
+    the call fails (bgo#755727).
+  + Fixed some atspi_text_ functions (bgo#755731).
+
+-------------------------------------------------------------------

Old:
----
  at-spi2-core-2.18.0.tar.xz

New:
----
  at-spi2-core-2.18.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ at-spi2-core.spec ++++++
--- /var/tmp/diff_new_pack.7j8r9Q/_old  2015-10-25 19:12:21.000000000 +0100
+++ /var/tmp/diff_new_pack.7j8r9Q/_new  2015-10-25 19:12:21.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           at-spi2-core
-Version:        2.18.0
+Version:        2.18.1
 Release:        0
 Summary:        Assistive Technology Service Provider Interface - D-Bus based 
implementation
 License:        GPL-2.0+

++++++ at-spi2-core-2.18.0.tar.xz -> at-spi2-core-2.18.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/NEWS new/at-spi2-core-2.18.1/NEWS
--- old/at-spi2-core-2.18.0/NEWS        2015-08-17 21:28:07.000000000 +0200
+++ new/at-spi2-core-2.18.1/NEWS        2015-10-12 21:45:47.000000000 +0200
@@ -1,3 +1,13 @@
+What's new in at-spi2-core 2.18.1:
+
+* Don't crash if we get a children-changed event with a non-existent
+  child 9bgo#755951).
+
+* atspi_hyperlink_get_index_range: don't return random values if the
+  call fails (bgo#755727).
+
+* Fixed some atspi_text_ functions (bgo#755731).
+
 What's new in at-spi2-core 2.17.90:
 
 * Modified the cache API to specify an object's index and child count
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-event-listener.c 
new/at-spi2-core-2.18.1/atspi/atspi-event-listener.c
--- old/at-spi2-core-2.18.0/atspi/atspi-event-listener.c        2015-08-15 
01:49:46.000000000 +0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-event-listener.c        2015-10-12 
20:31:16.000000000 +0200
@@ -207,6 +207,8 @@
     return;
 
   child = g_value_get_object (&event->any_data);
+  if (child)
+    return;
 
   if (!strncmp (event->type, "object:children-changed:add", 27))
   {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-hyperlink.c 
new/at-spi2-core-2.18.1/atspi/atspi-hyperlink.c
--- old/at-spi2-core-2.18.0/atspi/atspi-hyperlink.c     2015-06-14 
17:42:53.000000000 +0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-hyperlink.c     2015-10-12 
21:04:03.000000000 +0200
@@ -133,7 +133,8 @@
 AtspiRange *
 atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError **error)
 {
-  dbus_int32_t d_start_offset, d_end_offset;
+  dbus_int32_t d_start_offset = -1;
+  dbus_int32_t d_end_offset = -1;
   AtspiRange *ret = g_new (AtspiRange, 1);
 
   ret->start_offset = ret->end_offset = -1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-text.c 
new/at-spi2-core-2.18.1/atspi/atspi-text.c
--- old/at-spi2-core-2.18.0/atspi/atspi-text.c  2015-06-14 17:42:53.000000000 
+0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-text.c  2015-10-12 21:20:12.000000000 
+0200
@@ -319,10 +319,14 @@
                                      GError **error)
 {
   gchar *retval = NULL;
+  dbus_int32_t d_i = offset;
 
   g_return_val_if_fail (obj != NULL, NULL);
 
-  _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, 
"i=>s", offset, &retval);
+  _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, 
"is=>s", d_i, (const gchar *)attribute_value, &retval);
+
+  if (!retval)
+    retval = g_strdup ("");
 
   return retval;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/configure 
new/at-spi2-core-2.18.1/configure
--- old/at-spi2-core-2.18.0/configure   2015-09-22 00:13:20.000000000 +0200
+++ new/at-spi2-core-2.18.1/configure   2015-10-12 21:46:12.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for at-spi2-core 2.18.0.
+# Generated by GNU Autoconf 2.69 for at-spi2-core 2.18.1.
 #
 # Report bugs to <[email protected]>.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='at-spi2-core'
 PACKAGE_TARNAME='at-spi2-core'
-PACKAGE_VERSION='2.18.0'
-PACKAGE_STRING='at-spi2-core 2.18.0'
+PACKAGE_VERSION='2.18.1'
+PACKAGE_STRING='at-spi2-core 2.18.1'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1441,7 +1441,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures at-spi2-core 2.18.0 to adapt to many kinds of systems.
+\`configure' configures at-spi2-core 2.18.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1515,7 +1515,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of at-spi2-core 2.18.0:";;
+     short | recursive ) echo "Configuration of at-spi2-core 2.18.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1652,7 +1652,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-at-spi2-core configure 2.18.0
+at-spi2-core configure 2.18.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2204,7 +2204,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by at-spi2-core $as_me 2.18.0, which was
+It was created by at-spi2-core $as_me 2.18.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3087,7 +3087,7 @@
 
 # Define the identity of the package.
  PACKAGE='at-spi2-core'
- VERSION='2.18.0'
+ VERSION='2.18.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15605,7 +15605,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by at-spi2-core $as_me 2.18.0, which was
+This file was extended by at-spi2-core $as_me 2.18.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -15671,7 +15671,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-at-spi2-core config.status 2.18.0
+at-spi2-core config.status 2.18.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/configure.ac 
new/at-spi2-core-2.18.1/configure.ac
--- old/at-spi2-core-2.18.0/configure.ac        2015-09-22 00:13:04.000000000 
+0200
+++ new/at-spi2-core-2.18.1/configure.ac        2015-10-12 21:45:55.000000000 
+0200
@@ -1,4 +1,4 @@
-AC_INIT([at-spi2-core], [2.18.0], 
[[email protected]])
+AC_INIT([at-spi2-core], [2.18.1], 
[[email protected]])
 AC_PREREQ([2.59])
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_MACRO_DIR([m4])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/registryd/introspection.c 
new/at-spi2-core-2.18.1/registryd/introspection.c
--- old/at-spi2-core-2.18.0/registryd/introspection.c   2015-06-14 
17:42:53.000000000 +0200
+++ new/at-spi2-core-2.18.1/registryd/introspection.c   2015-10-12 
21:20:12.000000000 +0200
@@ -556,9 +556,6 @@
 "    <arg direction=\"in\" name=\"offset\" type=\"i\" />"
 "    <arg direction=\"in\" name=\"attributeName\" type=\"s\" />"
 "    <arg direction=\"out\" type=\"s\" />"
-"    <arg direction=\"out\" name=\"startOffset\" type=\"i\" />"
-"    <arg direction=\"out\" name=\"endOffset\" type=\"i\" />"
-"    <arg direction=\"out\" name=\"defined\" type=\"b\" />"
 "  </method>"
 ""
 "  <method name=\"GetAttributes\">"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/xml/Text.xml 
new/at-spi2-core-2.18.1/xml/Text.xml
--- old/at-spi2-core-2.18.0/xml/Text.xml        2015-06-14 17:42:53.000000000 
+0200
+++ new/at-spi2-core-2.18.1/xml/Text.xml        2015-10-12 21:20:12.000000000 
+0200
@@ -58,9 +58,6 @@
     <arg direction="in" name="offset" type="i"/>
     <arg direction="in" name="attributeName" type="s"/>
     <arg direction="out" type="s"/>
-    <arg direction="out" name="startOffset" type="i"/>
-    <arg direction="out" name="endOffset" type="i"/>
-    <arg direction="out" name="defined" type="b"/>
   </method>
 
   <method name="GetAttributes">


Reply via email to