diff options
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r-- | ext/mssql/php_mssql.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |