From: Lennart Poettering Date: Fri, 22 Jul 2011 22:47:50 +0000 (+0200) Subject: lookup: fix NUL termination of search path array X-Git-Tag: v31~26 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=4bf2bbb6fbfa745fa7e51f85dc59fc008207cb3e;p=elogind.git lookup: fix NUL termination of search path array --- diff --git a/src/path-lookup.c b/src/path-lookup.c index e1925f1a4..bed9175e3 100644 --- a/src/path-lookup.c +++ b/src/path-lookup.c @@ -56,7 +56,8 @@ static char** user_dirs(void) { const char * const config_unit_paths[] = { "/run/systemd/user", USER_CONFIG_UNIT_PATH, - "/etc/systemd/user" + "/etc/systemd/user", + NULL }; const char * const data_unit_paths[] = { @@ -64,7 +65,8 @@ static char** user_dirs(void) { "/usr/local/share/systemd/user", USER_DATA_UNIT_PATH, "/usr/lib/systemd/user", - "/usr/share/systemd/user" + "/usr/share/systemd/user", + NULL }; const char *home, *e;