missing var

This commit is contained in:
Danny Yoo 2012-02-21 15:53:38 -05:00
parent 5289bb298b
commit 4ba1ca94be

View File

@ -873,7 +873,7 @@
};
var checkedMul = function(M, x, y) {
var prod;
var prod, i;
// fast path optimization: binop addition on fixnums
if (arguments.length === 3) {
if (typeof(x) === 'number' && typeof(y) === 'number') {