diff options
Diffstat (limited to 'daemon/command.c')
-rw-r--r-- | daemon/command.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/daemon/command.c b/daemon/command.c index 32615137..4420cba8 100644 --- a/daemon/command.c +++ b/daemon/command.c @@ -61,6 +61,18 @@ do_command (char **argv) sysroot_selinux = sysroot_path ("/selinux"); sysroot_sys = sysroot_path ("/sys"); + if (sysroot_dev == NULL || sysroot_dev_pts == NULL || + sysroot_proc == NULL || sysroot_selinux == NULL || + sysroot_sys == NULL) { + reply_with_perror ("malloc"); + free (sysroot_dev); + free (sysroot_dev_pts); + free (sysroot_proc); + free (sysroot_selinux); + free (sysroot_sys); + return NULL; + } + r = command (NULL, NULL, "mount", "--bind", "/dev", sysroot_dev, NULL); dev_ok = r != -1; r = command (NULL, NULL, "mount", "--bind", "/dev/pts", sysroot_dev_pts, NULL); |