Bug 1129231 - Remove a couple JS octal constant warnings. r=fabrice

This has just the intended changes.
This commit is contained in:
Dave Hylands 2015-02-04 14:51:39 -08:00
parent 95217cc09f
commit 78039a64a3
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ DirectoryProvider.prototype = {
// subdir doesn't exist, and the parent is writable, so try to
// create it. This can fail if a file named updates exists.
try {
dir.create(Ci.nsIFile.DIRECTORY_TYPE, 0770);
dir.create(Ci.nsIFile.DIRECTORY_TYPE, parseInt('0770', 8));
} catch (e) {
// The create failed for some reason. We can't use it.
log("Error: " + dir.path + " unable to create directory");

View File

@ -86,7 +86,7 @@ function getDir(name) {
function writeFile(dirName, fileName, data) {
let path = getDir(dirName);
if (!path.exists())
path.create(Ci.nsIFile.DIRECTORY_TYPE, 0700);
path.create(Ci.nsIFile.DIRECTORY_TYPE, parseInt('0700', 8));
path.append(fileName);
var fs = Cc["@mozilla.org/network/file-output-stream;1"].
createInstance(Ci.nsIFileOutputStream);