diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-06-06 23:29:09 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-06-06 23:31:25 +0200 |
commit | e5a1c18d706c4d5e16100fe4fb8a07a80f2fa339 (patch) | |
tree | b7306e2fa9d9cd58fa8e2b1295ea81e0586bd0a3 /src/core/socket.c | |
parent | 445743035336bf9691d200b8417685186ef9b5f9 (diff) |
fix warnings
Prevent use of uninitialized variable and removed a now unused
cleanup function for freeaddrinfo
Diffstat (limited to 'src/core/socket.c')
-rw-r--r-- | src/core/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/socket.c b/src/core/socket.c index 9c4943e0bf..4fb4b991e2 100644 --- a/src/core/socket.c +++ b/src/core/socket.c @@ -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); |