Commit b64159ac authored by MATSUMOTO, Ryosuke's avatar MATSUMOTO, Ryosuke Committed by Pavel Emelyanov

Fix 'mnt_path' may be used uninitialized in this function

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7f75e74a
...@@ -2280,7 +2280,7 @@ static int do_bind_mount(struct mount_info *mi) ...@@ -2280,7 +2280,7 @@ static int do_bind_mount(struct mount_info *mi)
int exit_code = -1; int exit_code = -1;
bool shared = false; bool shared = false;
bool master = false; bool master = false;
char *mnt_path; char *mnt_path = NULL;
struct stat st; struct stat st;
bool umount_mnt_path = false; bool umount_mnt_path = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment