diff options
author | Frank M. Kromann <fmk@php.net> | 2003-02-09 08:33:40 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2003-02-09 08:33:40 +0000 |
commit | 9c161984a8990f70fb63eab40983078ebc04e6e3 (patch) | |
tree | 87dca0b8025a1815dcdb4add25b69e3bff9c0dd8 /ext/mssql | |
parent | eca4eb45221555d82043cb4b671f67d85951063a (diff) | |
download | php-git-9c161984a8990f70fb63eab40983078ebc04e6e3.tar.gz |
Fixing coredump when no php.ini file is used
Diffstat (limited to 'ext/mssql')
-rw-r--r-- | ext/mssql/php_mssql.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index f624e21bc7..4b7497afa0 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) |