We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96e318f commit 9beea7eCopy full SHA for 9beea7e
src/library_fs.js
@@ -1038,16 +1038,12 @@ FS.staticInit();
1038
node = path;
1039
} else {
1040
path = PATH.normalize(path);
1041
- try {
1042
- var lookup = FS.lookupPath(path, {
1043
- follow: !(flags & {{{ cDefs.O_NOFOLLOW }}}),
1044
- handleBrokenLink: true
1045
- });
1046
- node = lookup.node;
1047
- path = lookup.path;
1048
- } catch (e) {
1049
- // ignore
1050
- }
+ var lookup = FS.lookupPath(path, {
+ follow: !(flags & {{{ cDefs.O_NOFOLLOW }}}),
+ handleBrokenLink: true
+ });
+ node = lookup.node;
+ path = lookup.path;
1051
}
1052
// perhaps we need to create the node
1053
var created = false;
0 commit comments