lookup: fix NUL termination of search path array

This commit is contained in:
Lennart Poettering 2011-07-23 00:47:50 +02:00
parent ddd8876392
commit 4bf2bbb6fb

View file

@ -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;