summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-10-12 01:24:51 +0000
committerFelipe Pena <felipe@php.net>2011-10-12 01:24:51 +0000
commitd080277d973e8f59d6ceee6541700f44d979d161 (patch)
tree421d4100349edb5c3aa5a17918ab4396eefa0aee /ext
parent71eaaf65679fc949b798dec1007826162ecdc4d4 (diff)
downloadphp-git-d080277d973e8f59d6ceee6541700f44d979d161.tar.gz
- Fixed bug #60033 (Incorrectly merged PDO dblib patches break uniqueidentifier column type)
Diffstat (limited to 'ext')
-rw-r--r--ext/pdo_dblib/dblib_stmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_dblib/dblib_stmt.c b/ext/pdo_dblib/dblib_stmt.c
index c7c48f5916..8fa8dd7b67 100644
--- a/ext/pdo_dblib/dblib_stmt.c
+++ b/ext/pdo_dblib/dblib_stmt.c
@@ -235,9 +235,9 @@ static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr,
/* uniqueidentifier is a 16-byte binary number, convert to 32 char hex string */
#ifdef SQLUNIQUE
- *len = dbconvert(NULL, SQLUNIQUE, ptr, *len, SQLCHAR, tmp_ptr, *len);
+ *len = dbconvert(NULL, SQLUNIQUE, *ptr, *len, SQLCHAR, tmp_ptr, *len);
#else
- *len = dbconvert(NULL, 36, ptr, *len, SQLCHAR, tmp_ptr, *len);
+ *len = dbconvert(NULL, 36, *ptr, *len, SQLCHAR, tmp_ptr, *len);
#endif
php_strtoupper(tmp_ptr, *len);
*ptr = tmp_ptr;