diff options
author | Kay Sievers <kay@vrfy.org> | 2013-11-28 01:24:56 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-11-28 01:24:56 +0100 |
commit | 28b99ccdcb43937123b170509558af6296a0d271 (patch) | |
tree | 3a77771ba03a1c4fef0e1ea31f7eb5f555392b92 /src/core/unit.c | |
parent | 88e4d1d733def755a21c1848bf00c20f94b983c5 (diff) |
core: initialize variable
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index d82408ccde..31d5f113f7 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); |