diff options
author | Nicolas Cornu <ncornu@aldebaran.com> | 2015-10-21 18:17:12 +0200 |
---|---|---|
committer | Nicolas Cornu <ncornu@aldebaran.com> | 2015-10-21 18:17:12 +0200 |
commit | 1f2f874c3c0e0f4cee7688ee59e2fde669626bc3 (patch) | |
tree | 5d954e728441ed15ddba2d8b23310008cc4b3225 /src/core/dbus-service.c | |
parent | 91839b49dd6911c1d900e3b5456091eb9941bb8f (diff) |
core dbus: Check that flush works with memstream
Diffstat (limited to 'src/core/dbus-service.c')
-rw-r--r-- | src/core/dbus-service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/dbus-service.c b/src/core/dbus-service.c index b636f8ba6a..fe2a4a3b37 100644 --- a/src/core/dbus-service.c +++ b/src/core/dbus-service.c @@ -243,7 +243,9 @@ static int bus_service_set_transient_property( a); } - fflush(f); + r = fflush_and_check(f); + if (r < 0) + return r; unit_write_drop_in_private(UNIT(s), mode, name, buf); } |