Browse Source

Fix fs.readFile handling encoding. Should close issue #72

v0.7.4-release
Jacek Becela 15 years ago
committed by Ryan Dahl
parent
commit
548d59d07e
  1. 2
      src/node.js

2
src/node.js

@ -310,7 +310,7 @@ function readAll (fd, pos, content, encoding, callback) {
}
process.fs.readFile = function (path, encoding_, callback) {
var encoding = typeof(encoding_) == 'string' ? encoding : 'utf8';
var encoding = typeof(encoding_) == 'string' ? encoding_ : 'utf8';
var callback_ = arguments[arguments.length - 1];
var callback = (typeof(callback_) == 'function' ? callback_ : null);
process.fs.open(path, process.O_RDONLY, 0666, function (err, fd) {

Loading…
Cancel
Save