diff options
author | Scott Moser <smoser@brickies.net> | 2021-01-13 21:31:00 -0500 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-01-15 17:36:02 +0100 |
commit | 8f5f8702412a98fd8f70a9342f82414127703806 (patch) | |
tree | 936526371268e529b2bf2751881c4cc7a85dff48 /lib/sqfs/dir_reader.c | |
parent | b04ff42f1640a4dd67af043f08b62ac4ec96edc7 (diff) |
Fix more normalization of slashes in filenames.
It looks like the last commit missed a couple more occurences
where '\' was treated incorrectly.
Fixes were still needed in sqfs_dir_reader_find_by_path and
sqfs_dir_reader_get_full_hierarchy.
This path is used in extras/browse.c.
Diffstat (limited to 'lib/sqfs/dir_reader.c')
-rw-r--r-- | lib/sqfs/dir_reader.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/sqfs/dir_reader.c b/lib/sqfs/dir_reader.c index 49d1188..65962d8 100644 --- a/lib/sqfs/dir_reader.c +++ b/lib/sqfs/dir_reader.c @@ -277,8 +277,8 @@ int sqfs_dir_reader_find_by_path(sqfs_dir_reader_t *rd, return ret; while (*path != '\0') { - if (*path == '/' || *path == '\\') { - while (*path == '/' || *path == '\\') + if (*path == '/') { + while (*path == '/') ++path; continue; } @@ -290,7 +290,6 @@ int sqfs_dir_reader_find_by_path(sqfs_dir_reader_t *rd, ptr = strchr(path, '/'); if (ptr == NULL) { - ptr = strchr(path, '\\'); if (ptr == NULL) { for (ptr = path; *ptr != '\0'; ++ptr) |