pull/24503/head
isaacs 2012-06-28 22:06:53 -07:00
parent 3644b0bc96
commit 3e0757c101
1 changed files with 1 additions and 1 deletions

View File

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