1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

fix warnings

Prevent use of uninitialized variable and removed a now unused
cleanup function for freeaddrinfo
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2014-06-06 23:29:09 +02:00
parent 4457430353
commit e5a1c18d70
2 changed files with 1 additions and 4 deletions

View File

@ -1410,7 +1410,7 @@ static int socket_chown(Socket *s, pid_t *_pid) {
}
LIST_FOREACH(port, p, s->ports) {
const char *path;
const char *path = NULL;
if (p->type == SOCKET_SOCKET)
path = socket_address_get_path(&p->address);

View File

@ -47,9 +47,6 @@
static const char *arg_remote_host = NULL;
#define _cleanup_freeaddrinfo_ _cleanup_(freeaddrinfop)
DEFINE_TRIVIAL_CLEANUP_FUNC(struct addrinfo *, freeaddrinfo);
typedef struct Context {
sd_event *event;
sd_resolve *resolve;