summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-transport-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-transport-unix.c')
-rw-r--r--dbus/dbus-transport-unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbus/dbus-transport-unix.c b/dbus/dbus-transport-unix.c
index a2b8a384..dfaeb1ad 100644
--- a/dbus/dbus-transport-unix.c
+++ b/dbus/dbus-transport-unix.c
@@ -888,7 +888,7 @@ unix_disconnect (DBusTransport *transport)
free_watches (transport);
- close (unix_transport->fd);
+ _dbus_close (unix_transport->fd, NULL);
unix_transport->fd = -1;
}
@@ -1161,7 +1161,7 @@ _dbus_transport_new_for_domain_socket (const char *path,
if (transport == NULL)
{
dbus_set_result (result, DBUS_RESULT_NO_MEMORY);
- close (fd);
+ _dbus_close (fd, NULL);
fd = -1;
}
@@ -1199,7 +1199,7 @@ _dbus_transport_new_for_tcp_socket (const char *host,
if (transport == NULL)
{
dbus_set_result (result, DBUS_RESULT_NO_MEMORY);
- close (fd);
+ _dbus_close (fd, NULL);
fd = -1;
}