summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-04-21 00:02:35 +0200
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-04-21 00:03:22 +0200
commit6e37cd2f4af8928d905203108a4331e375d7127c (patch)
tree5c8739d0b8f93405d7471053da3c7fdc84dc022b
parent57bd6899b35b84d1f23809133ae45d29a87b2eaa (diff)
silence warnings
-rw-r--r--src/libsystemd/sd-rtnl/rtnl-message.c2
-rw-r--r--src/udev/net/link-config.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd/sd-rtnl/rtnl-message.c b/src/libsystemd/sd-rtnl/rtnl-message.c
index a5b09edda..3576274e4 100644
--- a/src/libsystemd/sd-rtnl/rtnl-message.c
+++ b/src/libsystemd/sd-rtnl/rtnl-message.c
@@ -1092,7 +1092,7 @@ int socket_read_message(sd_rtnl *rtnl) {
struct nlmsghdr *new_msg;
size_t len;
int r;
- unsigned i;
+ unsigned i = 0;
assert(rtnl);
assert(rtnl->rbuffer);
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c
index 7be4d24de..8234598e4 100644
--- a/src/udev/net/link-config.c
+++ b/src/udev/net/link-config.c
@@ -140,7 +140,7 @@ void link_config_ctx_free(link_config_ctx *ctx) {
static int load_link(link_config_ctx *ctx, const char *filename) {
_cleanup_free_ link_config *link = NULL;
- _cleanup_fclose_ FILE *file;
+ _cleanup_fclose_ FILE *file = NULL;
int r;
assert(ctx);