X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ftimedate%2Ftimedated.c;h=bb134b7fffb4ee16102affaf25ef0ca48b533d93;hp=4efa806c399d97f85136ad38dfe734d2789026b5;hb=7e7d4da22925c329d668334aec3b3e7f21f63bc3;hpb=ac714a78fdca481488d88f84b6332d28083a4511 diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c index 4efa806c3..bb134b7ff 100644 --- a/src/timedate/timedated.c +++ b/src/timedate/timedated.c @@ -90,6 +90,8 @@ typedef struct TZ { } TZ; static TZ tz = { + .zone = NULL, + .local_rtc = false, .can_ntp = -1, .use_ntp = -1, }; @@ -303,9 +305,10 @@ static char** get_ntp_services(void) { if (l[0] == 0 || l[0] == '#') continue; - if (strv_extend(&r, l) < 0) + if (strv_extend(&r, l) < 0) { log_oom(); - return NULL; + return NULL; + } } }