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 99996f5 commit a16bafdCopy full SHA for a16bafd
src/library_fs.js
@@ -1022,16 +1022,12 @@ FS.staticInit();
1022
node = path;
1023
} else {
1024
path = PATH.normalize(path);
1025
- try {
1026
- var lookup = FS.lookupPath(path, {
1027
- follow: !(flags & {{{ cDefs.O_NOFOLLOW }}}),
1028
- handleBrokenLink: true
1029
- });
1030
- node = lookup.node;
1031
- path = lookup.path;
1032
- } catch (e) {
1033
- // ignore
1034
- }
+ var lookup = FS.lookupPath(path, {
+ follow: !(flags & {{{ cDefs.O_NOFOLLOW }}}),
+ handleBrokenLink: true
+ });
+ node = lookup.node;
+ path = lookup.path;
1035
}
1036
// perhaps we need to create the node
1037
var created = false;
0 commit comments