Browse Source

lint

v0.8.7-release
isaacs 12 years ago
parent
commit
3e0757c101
  1. 2
      lib/fs.js

2
lib/fs.js

@ -1108,7 +1108,7 @@ fs.realpath = function realpath(p, cache, cb) {
// On windows, check that the root exists. On unix there is no need.
if (isWindows && !knownHard[base]) {
fs.lstat(base, function (err) {
fs.lstat(base, function(err) {
if (err) return cb(err);
knownHard[base] = true;
LOOP();

Loading…
Cancel
Save