diff options
| -rw-r--r-- | vold/volmgr_vfat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vold/volmgr_vfat.c b/vold/volmgr_vfat.c index 835b71df..7a4e12f1 100644 --- a/vold/volmgr_vfat.c +++ b/vold/volmgr_vfat.c @@ -66,6 +66,9 @@ int vfat_check(blkdev_t *dev) } else if (rc == 2) { LOG_VOL("Filesystem check failed (not a FAT filesystem)"); return -ENODATA; + } else if (rc == -11) { + LOG_VOL("Filesystem check crashed"); + return -EIO; } else { LOG_VOL("Filesystem check failed (unknown exit code %d)", rc); return -EIO; |
