From 10f97f94240cc0321f40bcf075b1f29d4b694824 Mon Sep 17 00:00:00 2001 From: talltyler Date: Thu, 6 Oct 2011 23:04:39 -0400 Subject: [PATCH] Fixing #1774 about issues when running node with --harmony_block_scoping v8 option Fixes #1837. --- lib/fs.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/fs.js b/lib/fs.js index d132f3f1b3..b3d684a61e 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -412,7 +412,7 @@ fs.readlinkSync = function(path) { fs.symlink = function(destination, path, mode_, callback) { var mode = (typeof(mode_) == 'string' ? mode_ : null); var callback_ = arguments[arguments.length - 1]; - var callback = (typeof(callback_) == 'function' ? callback_ : null); + callback = (typeof(callback_) == 'function' ? callback_ : null); binding.symlink(destination, path, mode, callback); }; @@ -564,7 +564,7 @@ function writeAll(fd, buffer, offset, length, callback) { fs.writeFile = function(path, data, encoding_, callback) { var encoding = (typeof(encoding_) == 'string' ? encoding_ : 'utf8'); var callback_ = arguments[arguments.length - 1]; - var callback = (typeof(callback_) == 'function' ? callback_ : null); + callback = (typeof(callback_) == 'function' ? callback_ : null); fs.open(path, 'w', 0666, function(openErr, fd) { if (openErr) { if (callback) callback(openErr); @@ -747,7 +747,7 @@ if (isWindows) { // windows version fs.realpathSync = function realpathSync(p, cache) { - var p = path.resolve(p); + p = path.resolve(p); if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { return cache[p]; } @@ -762,7 +762,7 @@ if (isWindows) { cb = cache; cache = null; } - var p = path.resolve(p); + p = path.resolve(p); if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { return cb(null, cache[p]); }