From 7fae594df719d1d81a043c4d0280b359f750facb Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 8 Jun 2011 22:14:21 +0100 Subject: [PATCH] Coverity: Check return value of sysroot_path. For some reason we were checking the parameter! --- daemon/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/mount.c b/daemon/mount.c index a379d39..098283a 100644 --- a/daemon/mount.c +++ b/daemon/mount.c @@ -352,7 +352,7 @@ do_mount_loop (const char *file, const char *mountpoint) } buf = sysroot_path (file); - if (!file) { + if (!buf) { reply_with_perror ("malloc"); free (mp); return -1; -- 1.8.3.1