From: Anatol Belski Date: Fri, 11 Jul 2014 07:36:44 +0000 (+0200) Subject: fixe output_as_table() when no ext was enabled X-Git-Tag: php-5.4.32RC1~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f5cf7d41a6d5efd29109c589cb665723daff122;p=php fixe output_as_table() when no ext was enabled --- 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; }