mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Revert patch for bug #44325
This commit is contained in:
parent
da494df864
commit
34c89a2601
1 changed files with 5 additions and 10 deletions
|
@ -2067,19 +2067,14 @@ PHP_FUNCTION(mssql_bind)
|
|||
|
||||
/* modify datalen and maxlen according to dbrpcparam documentation */
|
||||
if ( (type==SQLVARCHAR) || (type==SQLCHAR) || (type==SQLTEXT) ) { /* variable-length type */
|
||||
if (is_null || Z_TYPE_PP(var) == IS_NULL) {
|
||||
if (is_null) {
|
||||
maxlen=0;
|
||||
datalen=0;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
convert_to_string_ex(var);
|
||||
datalen = Z_STRLEN_PP(var);
|
||||
value = (LPBYTE)Z_STRVAL_PP(var);
|
||||
if (!datalen) {
|
||||
datalen = 1;
|
||||
if (maxlen == -1) {
|
||||
maxlen = 1;
|
||||
}
|
||||
}
|
||||
datalen=Z_STRLEN_PP(var);
|
||||
value=(LPBYTE)Z_STRVAL_PP(var);
|
||||
}
|
||||
}
|
||||
else { /* fixed-length type */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue