mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 01:48:00 +02:00
Merge branch 'dbus-1.8'
Conflicts: dbus/dbus-sysdeps-win.c
This commit is contained in:
commit
718843d351
2 changed files with 6 additions and 2 deletions
|
|
@ -509,7 +509,7 @@ _dbus_trace_ref (const char *obj_name,
|
|||
{
|
||||
VALGRIND_PRINTF_BACKTRACE ("%s %p ref stolen (%s)",
|
||||
obj_name, obj, why);
|
||||
_dbus_verbose ("%s %p ref stolen (%s)",
|
||||
_dbus_verbose ("%s %p ref stolen (%s)\n",
|
||||
obj_name, obj, why);
|
||||
}
|
||||
else
|
||||
|
|
@ -517,7 +517,7 @@ _dbus_trace_ref (const char *obj_name,
|
|||
VALGRIND_PRINTF_BACKTRACE ("%s %p %d -> %d refs (%s)",
|
||||
obj_name, obj,
|
||||
old_refcount, new_refcount, why);
|
||||
_dbus_verbose ("%s %p %d -> %d refs (%s)",
|
||||
_dbus_verbose ("%s %p %d -> %d refs (%s)\n",
|
||||
obj_name, obj, old_refcount, new_refcount, why);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,6 +273,7 @@ teardown (Fixture *f,
|
|||
{
|
||||
if (f->left_client_conn != NULL)
|
||||
{
|
||||
test_connection_shutdown(NULL, f->left_client_conn);
|
||||
dbus_connection_close (f->left_client_conn);
|
||||
dbus_connection_unref (f->left_client_conn);
|
||||
f->left_client_conn = NULL;
|
||||
|
|
@ -280,6 +281,7 @@ teardown (Fixture *f,
|
|||
|
||||
if (f->right_client_conn != NULL)
|
||||
{
|
||||
test_connection_shutdown(NULL, f->right_client_conn);
|
||||
dbus_connection_close (f->right_client_conn);
|
||||
dbus_connection_unref (f->right_client_conn);
|
||||
f->right_client_conn = NULL;
|
||||
|
|
@ -287,6 +289,7 @@ teardown (Fixture *f,
|
|||
|
||||
if (f->left_server_conn != NULL)
|
||||
{
|
||||
test_connection_shutdown(NULL, f->left_server_conn);
|
||||
dbus_connection_close (f->left_server_conn);
|
||||
dbus_connection_unref (f->left_server_conn);
|
||||
f->left_server_conn = NULL;
|
||||
|
|
@ -294,6 +297,7 @@ teardown (Fixture *f,
|
|||
|
||||
if (f->right_server_conn != NULL)
|
||||
{
|
||||
test_connection_shutdown(NULL, f->right_server_conn);
|
||||
dbus_connection_close (f->right_server_conn);
|
||||
dbus_connection_unref (f->right_server_conn);
|
||||
f->right_server_conn = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue