1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-22 15:47:37 +00:00

Unbreak the build.

Pointyhat to:	ssouhlal
This commit is contained in:
Suleiman Souhlal 2005-09-03 00:40:19 +00:00
parent dbf2e1c54f
commit 44bd2bc19a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149745

View File

@ -194,8 +194,10 @@ hpfs_mount (
vfs_mountedfrom(mp, from);
err = hpfs_mountfs(devvp, mp, td);
if (err)
goto error_2;
if (err) {
vrele(devvp);
goto error_1;
}
goto success;