diff options
Diffstat (limited to 'lib/sqfs/read_tree.c')
-rw-r--r-- | lib/sqfs/read_tree.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/sqfs/read_tree.c b/lib/sqfs/read_tree.c index b668ef4..56b4f0c 100644 --- a/lib/sqfs/read_tree.c +++ b/lib/sqfs/read_tree.c @@ -214,8 +214,8 @@ int sqfs_dir_reader_get_full_hierarchy(sqfs_dir_reader_t *rd, inode = NULL; while (path != NULL && *path != '\0') { - if (*path == '/' || *path == '\\') { - while (*path == '/' || *path == '\\') + if (*path == '/') { + while (*path == '/') ++path; continue; } @@ -226,7 +226,6 @@ int sqfs_dir_reader_get_full_hierarchy(sqfs_dir_reader_t *rd, ptr = strchr(path, '/'); if (ptr == NULL) { - ptr = strchr(path, '\\'); if (ptr == NULL) { for (ptr = path; *ptr != '\0'; ++ptr) |