From: Pierre Joye Date: Sun, 14 Dec 2008 16:25:15 +0000 (+0000) Subject: - fix build X-Git-Tag: php-5.3.0beta1~429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea7c47c97d17cae5492e7fb81161e590ed3d7311;p=php - fix build --- diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 34a7f4635a..4af5c3f46d 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -978,7 +978,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off if (!res_length) { ZVAL_NULL(result); } else { - ZVAL_STRINGL(result, (char *)dbdata(mssql_ptr->link, offset)), res_length, 1); + ZVAL_STRINGL(result, (char *)dbdata(mssql_ptr->link, offset), res_length, 1); } } break;