diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-19 17:47:11 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-19 17:53:50 +0100 |
commit | 39883f622f392d8579f4428fc5a789a102efbb10 (patch) | |
tree | ba82e4a0a65f9e0fe937dfa408860b9f3d25bab6 /src/login | |
parent | ca721e36083e70709ce21376c0b89bc797e53f91 (diff) |
make gcc shut up
If -flto is used then gcc will generate a lot more warnings than before,
among them a number of use-without-initialization warnings. Most of them
without are false positives, but let's make them go away, because it
doesn't really matter.
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/logind-session.c | 4 | ||||
-rw-r--r-- | src/login/test-login.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/login/logind-session.c b/src/login/logind-session.c index d7c074bdce..dc1d81c4be 100644 --- a/src/login/logind-session.c +++ b/src/login/logind-session.c @@ -480,7 +480,7 @@ static int session_start_scope(Session *s) { if (!s->scope) { _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL; _cleanup_free_ char *description = NULL; - char *scope, *job; + char *scope, *job = NULL; description = strjoin("Session ", s->id, " of user ", s->user->name, NULL); if (!description) @@ -567,7 +567,7 @@ int session_start(Session *s) { static int session_stop_scope(Session *s, bool force) { _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL; - char *job; + char *job = NULL; int r; assert(s); diff --git a/src/login/test-login.c b/src/login/test-login.c index ce88af80f0..d78cea46af 100644 --- a/src/login/test-login.c +++ b/src/login/test-login.c @@ -39,7 +39,7 @@ static void test_login(void) { uid_t *uids; unsigned n; struct pollfd pollfd; - sd_login_monitor *m; + sd_login_monitor *m = NULL; assert_se(sd_pid_get_session(0, &session) == 0); printf("session = %s\n", session); |