[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#793163: marked as done (jessie-pu: package dbus/1.8.20-0+deb8u1)



Your message dated Sat, 05 Sep 2015 14:31:07 +0100
with message-id <1441459867.2151.32.camel@adam-barratt.org.uk>
and subject line Closing p-u bugs for 8.2
has caused the Debian Bug report #793163,
regarding jessie-pu: package dbus/1.8.20-0+deb8u1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
793163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793163
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian.org@packages.debian.org
Usertags: pu

I released D-Bus 1.8.20 today. As with previous dbus 1.8.x bugfix
releases, I'd like to upload it to stable, to reduce the diffstat
if (when?) a subsequent bugfix release contains security fixes.
This is a non-security bugfix release, so I intend to wait until it has
reached testing; opening this bug in advance so you can say yes or no
in parallel.

Filtered debdiff (without Autotools noise) below. The Debian build
runs autoreconf anyway, so the Autotools noise is not significant.

Regards,
    S

--------

diffstat for dbus-1.8.18 dbus-1.8.20

 NEWS                 |   20 ++++++++++++++++++--
 bus/driver.c         |    2 ++
 configure.ac         |    4 ++--
 debian/changelog     |   10 ++++++++++
 tools/dbus-monitor.c |    5 +++++
 5 files changed, 37 insertions(+), 4 deletions(-)

diff -Nru --exclude Makefile.in --exclude '*/Makefile.in' --exclude '*/*/Makefile.in' --exclude depcomp --exclude install-sh --exclude missing --exclude test-driver --exclude aclocal.m4 --exclude compile --exclude configure dbus-1.8.18/bus/driver.c dbus-1.8.20/bus/driver.c
--- dbus-1.8.18/bus/driver.c	2015-05-14 13:23:25.000000000 +0100
+++ dbus-1.8.20/bus/driver.c	2015-07-21 17:28:16.000000000 +0100
@@ -1613,6 +1613,8 @@
       goto oom;
     }
 
+  dbus_message_unref (reply);
+
   return TRUE;
 
  oom:
diff -Nru --exclude Makefile.in --exclude '*/Makefile.in' --exclude '*/*/Makefile.in' --exclude depcomp --exclude install-sh --exclude missing --exclude test-driver --exclude aclocal.m4 --exclude compile --exclude configure dbus-1.8.18/configure.ac dbus-1.8.20/configure.ac
--- dbus-1.8.18/configure.ac	2015-05-14 13:28:34.000000000 +0100
+++ dbus-1.8.20/configure.ac	2015-07-21 17:32:10.000000000 +0100
@@ -3,7 +3,7 @@
 
 m4_define([dbus_major_version], [1])
 m4_define([dbus_minor_version], [8])
-m4_define([dbus_micro_version], [18])
+m4_define([dbus_micro_version], [20])
 m4_define([dbus_version],
           [dbus_major_version.dbus_minor_version.dbus_micro_version])
 AC_INIT([dbus],[dbus_version],[https://bugs.freedesktop.org/enter_bug.cgi?product=dbus],[dbus])
@@ -37,7 +37,7 @@
 
 ## increment any time the source changes; set to
 ##  0 if you increment CURRENT
-LT_REVISION=12
+LT_REVISION=13
 
 ## increment if any interfaces have been added; set to 0
 ## if any interfaces have been changed or removed. removal has
diff -Nru --exclude Makefile.in --exclude '*/Makefile.in' --exclude '*/*/Makefile.in' --exclude depcomp --exclude install-sh --exclude missing --exclude test-driver --exclude aclocal.m4 --exclude compile --exclude configure dbus-1.8.18/debian/changelog dbus-1.8.20/debian/changelog
--- dbus-1.8.18/debian/changelog	2015-05-14 13:57:50.000000000 +0100
+++ dbus-1.8.20/debian/changelog	2015-07-21 18:02:01.000000000 +0100
@@ -1,3 +1,13 @@
+dbus (1.8.20-0+deb8u1) jessie; urgency=medium
+
+  * New upstream bugfix release
+    - fix a memory leak when GetConnectionCredentials is called
+    - stop dbus-monitor replying to org.freedesktop.DBus.Peer
+      messages, including those that another process should have
+      replied to
+
+ -- Simon McVittie <smcv@debian.org>  Tue, 21 Jul 2015 17:59:42 +0100
+
 dbus (1.8.18-0+deb8u1) jessie; urgency=medium
 
   * New upstream bugfix release
diff -Nru --exclude Makefile.in --exclude '*/Makefile.in' --exclude '*/*/Makefile.in' --exclude depcomp --exclude install-sh --exclude missing --exclude test-driver --exclude aclocal.m4 --exclude compile --exclude configure dbus-1.8.18/NEWS dbus-1.8.20/NEWS
--- dbus-1.8.18/NEWS	2015-05-14 13:23:29.000000000 +0100
+++ dbus-1.8.20/NEWS	2015-07-21 17:31:58.000000000 +0100
@@ -1,3 +1,16 @@
+D-Bus 1.8.20 (2015-07-21)
+==
+
+The “Iguana Vanguard” release.
+
+Fixes:
+
+• Fix a memory leak when GetConnectionCredentials() succeeds
+  (fd.o #91008, Jacek Bukarewicz)
+
+• Ensure that dbus-monitor does not reply to messages intended for others
+  (fd.o #90952, Simon McVittie)
+
 D-Bus 1.8.18 (2015-05-14)
 ==
 
@@ -37,13 +50,16 @@
   sockets on approximately 1 attempt in 256 (fd.o #87999, Ralf Habacker)
 
 • Correctly release DBusServer mutex before early-return if we run out
-  of memory while copying authentication mechanisms (fd.o #90004,
+  of memory while copying authentication mechanisms (fd.o #90021,
   Ralf Habacker)
 
+• Correctly initialize all fields of DBusTypeReader (fd.o #90021;
+  Ralf Habacker, Simon McVittie)
+
 • Fix some missing \n in verbose (debug log) messages (fd.o #90004,
   Ralf Habacker)
 
-• Clean up some memory leaks in test code (fd.o #90004, Ralf Habacker)
+• Clean up some memory leaks in test code (fd.o #90021, Ralf Habacker)
 
 D-Bus 1.8.16 (2015-02-09)
 ==
diff -Nru --exclude Makefile.in --exclude '*/Makefile.in' --exclude '*/*/Makefile.in' --exclude depcomp --exclude install-sh --exclude missing --exclude test-driver --exclude aclocal.m4 --exclude compile --exclude configure dbus-1.8.18/tools/dbus-monitor.c dbus-1.8.20/tools/dbus-monitor.c
--- dbus-1.8.18/tools/dbus-monitor.c	2015-05-14 13:23:25.000000000 +0100
+++ dbus-1.8.20/tools/dbus-monitor.c	2015-07-21 17:28:16.000000000 +0100
@@ -365,6 +365,11 @@
       exit (1);
     }
 
+  /* Receive o.fd.Peer messages as normal messages, rather than having
+   * libdbus handle them internally, which is the wrong thing for
+   * a monitor */
+  dbus_connection_set_route_peer_messages (connection, TRUE);
+
   if (numFilters)
     {
       size_t offset = 0;

--- End Message ---
--- Begin Message ---
Version: 8.2

Hi,

These bugs correspond to updates which were included in the 8.2 point
release.

Regards,

Adam

--- End Message ---

Reply to: