From: Frank M. Kromann Date: Sun, 9 Feb 2003 08:32:54 +0000 (+0000) Subject: Fixing coredump when no php.ini file is used X-Git-Tag: php-4.3.2RC1~308 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed7d034849c807ff56a2c8c8d5ce9cf4aaec3b8f;p=php Fixing coredump when no php.ini file is used --- diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 659f3edd44..31a4df838d 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -276,6 +276,9 @@ static void php_mssql_init_globals(zend_mssql_globals *mssql_globals) mssql_globals->get_column_content = php_mssql_get_column_content_with_type; } } + else { + mssql_globals->get_column_content = php_mssql_get_column_content_with_type; + } } PHP_MINIT_FUNCTION(mssql)