projects
/
sdk
/
emulator
/
emulator-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
792590c
)
squashfs: fix warn_on when root inode is corrupted
author
Phillip Lougher
<phillip@lougher.demon.co.uk>
Fri, 16 Apr 2010 00:01:36 +0000
(
01:01
+0100)
committer
Phillip Lougher
<phillip@lougher.demon.co.uk>
Sun, 25 Apr 2010 00:49:17 +0000
(
01:49
+0100)
Fix warn_on triggered by mounting a fsfuzzer corrupted file system, where
the root inode has been corrupted.
Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk>
Reported-by: Steve Grubb <sgrubb@redhat.com>
fs/squashfs/super.c
patch
|
blob
|
history
diff --git
a/fs/squashfs/super.c
b/fs/squashfs/super.c
index 3550aec2f655ccb1a9a8a04dae5a9bb2df4fdc52..07ceeb8d8f539024447a224c76a6a87cc891e6bb 100644
(file)
--- a/
fs/squashfs/super.c
+++ b/
fs/squashfs/super.c
@@
-275,7
+275,8
@@
allocate_root:
err = squashfs_read_inode(root, root_inode);
if (err) {
- iget_failed(root);
+ make_bad_inode(root);
+ iput(root);
goto failed_mount;
}
insert_inode_hash(root);