Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118454
b: refs/heads/master
c: 52e9d9f
h: refs/heads/master
v: v3
  • Loading branch information
Darren Jenkins authored and Linus Torvalds committed Nov 6, 2008
1 parent 1dbf347 commit b91ebf5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53472bc8f810d2fb507593ea03703670506a668d
refs/heads/master: 52e9d9f4b32a3bec91feb76c84e37b7dcffe5040
7 changes: 4 additions & 3 deletions trunk/fs/fat/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,10 @@ int fat_search_long(struct inode *inode, const unsigned char *name,
if (de->attr == ATTR_EXT) {
int status = fat_parse_long(inode, &cpos, &bh, &de,
&unicode, &nr_slots);
if (status < 0)
return status;
else if (status == PARSE_INVALID)
if (status < 0) {
err = status;
goto end_of_dir;
} else if (status == PARSE_INVALID)
continue;
else if (status == PARSE_NOT_LONGNAME)
goto parse_record;
Expand Down

0 comments on commit b91ebf5

Please sign in to comment.