commit | 1620a61fd3faa2fb27cf53d414e22d79908aab70 | [log] [tgz] |
---|---|---|
author | Chih-Wei Huang <cwhuang@linux.org.tw> | Thu Mar 25 14:28:03 2010 +0800 |
committer | Chih-Wei Huang <cwhuang@linux.org.tw> | Thu Mar 25 14:28:03 2010 +0800 |
tree | 73f2b83d96023f315aaf012b6c89a5870642c656 | |
parent | fd7ebb367330ea3b999ca9c2a48431c437c05f67 [diff] |
vold: fix a bug of crash The condition to quit the for loop is fs->name is NULL, not fs itself. Change-Id: I5f18f92d7488bd89183ba4ddab582f3f3347df46
diff --git a/vold/volmgr.c b/vold/volmgr.c index deb680e..a635b8e 100644 --- a/vold/volmgr.c +++ b/vold/volmgr.c
@@ -1053,7 +1053,7 @@ break; } - if (!fs) { + if (!fs->name) { LOGE("No supported filesystems on %d:%d", dev->major, dev->minor); volume_setstate(vol, volstate_nofs); return -ENODATA;