| Submitter | Zheng Liu |
|---|---|
| Date | July 31, 2012, 11:48 a.m. |
| Message ID | <1343735309-30579-21-git-send-email-wenqing.lz@taobao.com> |
| Download | mbox | patch |
| Permalink | /patch/174235/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/lib/ext2fs/get_pathname.c b/lib/ext2fs/get_pathname.c index 52aea62..f92f17d 100644 --- a/lib/ext2fs/get_pathname.c +++ b/lib/ext2fs/get_pathname.c @@ -98,7 +98,12 @@ static errcode_t ext2fs_get_pathname_int(ext2_filsys fs, ext2_ino_t dir, gp.name = 0; gp.errcode = 0; - retval = ext2fs_dir_iterate(fs, dir, 0, buf, get_pathname_proc, &gp); + if (ext2fs_has_inline_data(fs, dir)) + retval = ext2fs_inline_data_iterate(fs, dir, 0, buf, + get_pathname_proc, &gp); + else + retval = ext2fs_dir_iterate(fs, dir, 0, buf, + get_pathname_proc, &gp); if (retval == EXT2_ET_NO_DIRECTORY) { char tmp[32];