зеркало из https://github.com/microsoft/msphpsql.git
Used sizeof not INT_MAX
This commit is contained in:
Родитель
999312be8b
Коммит
9a82e9daa3
source/shared
|
@ -487,7 +487,7 @@ void core_sqlsrv_bind_param( _Inout_ sqlsrv_stmt* stmt, _In_ SQLUSMALLINT param_
|
|||
// if it is boolean, set the lval to 0 or 1
|
||||
convert_to_long( param_z );
|
||||
buffer = ¶m_z->value;
|
||||
buffer_len = INT_MAX; //sizeof( Z_LVAL_P( param_z ));
|
||||
buffer_len = sizeof(int); //sizeof( Z_LVAL_P( param_z ));
|
||||
ind_ptr = buffer_len;
|
||||
if( direction != SQL_PARAM_INPUT ){
|
||||
// save the parameter so that 1) the buffer doesn't go away, and 2) we can set it to NULL if returned
|
||||
|
|
Загрузка…
Ссылка в новой задаче