fixed tab and spacing

This commit is contained in:
Hadis-Fard 2016-12-15 14:06:47 -08:00
parent 08792732f8
commit 47e13b32c6
2 changed files with 3 additions and 3 deletions

View file

@ -1991,7 +1991,7 @@ void finalize_output_parameters( sqlsrv_stmt* stmt TSRMLS_DC )
char* str = Z_STRVAL_P( value_z );
SQLLEN str_len = stmt->param_ind_ptrs[ output_param->param_num ];
if( str_len == SQL_NULL_DATA || str_len == 0 ) {
zend_string_release( Z_STR_P( value_z ));
zend_string_release( Z_STR_P( value_z ));
ZVAL_NULL( value_z );
continue;
}

View file

@ -1990,8 +1990,8 @@ void finalize_output_parameters( sqlsrv_stmt* stmt TSRMLS_DC )
// adjust the length of the string to the value returned by SQLBindParameter in the ind_ptr parameter
char* str = Z_STRVAL_P( value_z );
SQLLEN str_len = stmt->param_ind_ptrs[ output_param->param_num ];
if( str_len == SQL_NULL_DATA || str_len == 0) {
zend_string_release( Z_STR_P( value_z ));
if( str_len == SQL_NULL_DATA || str_len == 0 ) {
zend_string_release( Z_STR_P( value_z ));
ZVAL_NULL( value_z );
continue;
}