From 9f5cf7d41a6d5efd29109c589cb665723daff122 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 11 Jul 2014 09:36:44 +0200 Subject: fixe output_as_table() when no ext was enabled --- win32/build/confutils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 05eaa85165..ef50dfe08e 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1498,7 +1498,7 @@ function output_as_table(header, ar_out) var min = new Array(l); var max = new Array(l); - if (l != ar_out[0].length) { + if (!!ar_out[0] && l != ar_out[0].length) { STDOUT.WriteLine("Invalid header argument, can't output the table " + l + " " + ar_out[0].length ); return; } -- cgit v1.2.1