From: Kay Sievers Date: Thu, 28 Nov 2013 00:24:56 +0000 (+0100) Subject: core: initialize variable X-Git-Tag: v209~1262 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=28b99ccdcb43937123b170509558af6296a0d271 core: initialize variable --- diff --git a/src/core/unit.c b/src/core/unit.c index d82408ccd..31d5f113f 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2178,7 +2178,7 @@ void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value) { int unit_deserialize(Unit *u, FILE *f, FDSet *fds) { size_t offset; - ExecRuntime **rt; + ExecRuntime **rt = NULL; int r; assert(u);