Don't let filenames be changed to Windows' backslash-notation.

This commit is contained in:
Chad Weider 2012-02-28 18:29:23 -08:00
parent 45ba5d60dc
commit 45b7cafca4
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ exports.minify = function(req, res, next)
filename = path.normalize(path.join(ROOT_DIR, filename));
if (filename.indexOf(ROOT_DIR) == 0) {
filename = filename.slice(ROOT_DIR.length);
filename = filename.replace(/\\/g, '/'); // Windows (safe generally?)
} else {
res.writeHead(404, {});
res.end();