Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
dbus
dbus
Commits
718843d3
Commit
718843d3
authored
Apr 13, 2015
by
Ralf Habacker
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dbus-1.8'
Conflicts: dbus/dbus-sysdeps-win.c
parents
4101e0bc
c225ff83
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
dbus/dbus-internals.c
dbus/dbus-internals.c
+2
-2
test/relay.c
test/relay.c
+4
-0
No files found.
dbus/dbus-internals.c
View file @
718843d3
...
...
@@ -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
);
}
}
...
...
test/relay.c
View file @
718843d3
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment