mirror of
https://github.com/systemd/systemd.git
synced 2025-02-23 13:57:33 +03:00
service: fix segfault
This commit is contained in:
parent
6f5e3f3527
commit
ba8c0bef6b
@ -624,7 +624,7 @@ static int service_load_sysv_path(Service *s, const char *path) {
|
||||
s->valid_no_process = true;
|
||||
|
||||
/* Don't timeout special services during boot (like fsck) */
|
||||
if (!chars_intersect("12345", s->sysv_runlevels))
|
||||
if (s->sysv_runlevels && !chars_intersect("12345", s->sysv_runlevels))
|
||||
s->timeout_usec = -1;
|
||||
|
||||
u->meta.load_state = UNIT_LOADED;
|
||||
|
Loading…
x
Reference in New Issue
Block a user