journald: let's use TAKE_PTR() and TAKE_FD() where appropriate

This commit is contained in:
Lennart Poettering 2019-11-22 15:22:40 +01:00
parent a30e35f85a
commit 7e7ef3bfb2

View file

@ -631,8 +631,7 @@ int stdout_stream_install(Server *s, int fd, StdoutStream **ret) {
if (ret)
*ret = stream;
stream = NULL;
TAKE_PTR(stream);
return 0;
}
@ -675,7 +674,7 @@ static int stdout_stream_new(sd_event_source *es, int listen_fd, uint32_t revent
if (r < 0)
return r;
fd = -1;
TAKE_FD(fd);
return 0;
}