Missing disk close in libufs.

This commit is contained in:
Kirk McKusick 2017-12-26 23:16:11 +00:00
parent 45ab79431b
commit 6a3fe71314
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327227

View file

@ -83,6 +83,7 @@ ufs_disk_fillout(struct uufsd *disk, const char *name)
}
if (sbread(disk) == -1) {
ERROR(disk, "could not read superblock to fill out disk");
ufs_disk_close(disk);
return (-1);
}
return (0);