summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-03-05 23:52:56 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-03-05 23:52:56 +0000
commit1aab3a9b415680992c0adb0c39c558ac776fc740 (patch)
treeda8b3ee8f3e874382fca03ab99270a3f1839e0a7 /ext/mssql/php_mssql.c
parente0d8f5c8bc36c33c7b2bbd8eb8688fad4b2967a1 (diff)
downloadphp-git-1aab3a9b415680992c0adb0c39c558ac776fc740.tar.gz
MFB: Revert patch for bug #44325
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r--ext/mssql/php_mssql.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c
index a80f84ca83..12f84b57e9 100644
--- a/ext/mssql/php_mssql.c
+++ b/ext/mssql/php_mssql.c
@@ -2056,19 +2056,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 */