From 599659860c770058f2eb04d578c521c16e0b1853 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 17 Oct 2012 21:24:36 +0200 Subject: [PATCH] timedatectl: properly initialize struct before decoding bus messages --- src/timedate/timedatectl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index 8c6e7c921..e94a847bf 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -69,11 +69,9 @@ typedef struct StatusInfo { } StatusInfo; static bool ntp_synced(void) { - struct timex txc; zero(txc); - if (adjtimex(&txc) < 0) return false; @@ -90,6 +88,8 @@ static void print_status_info(StatusInfo *i) { time_t sec; int r; + assert(i); + n = now(CLOCK_REALTIME); sec = (time_t) (n / USEC_PER_SEC); @@ -191,6 +191,7 @@ static int show_status(DBusConnection *bus, char **args, unsigned n) { return -EIO; } + zero(info); dbus_message_iter_recurse(&iter, &sub); while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) { -- 2.30.2