- Changed the $context parameter on copy() to actually have an effect. (Kalle)
- Fixed possible crash in mssql_fetch_batch(). (Kalle)
+- Fixed bug #52699 (PDO bindValue writes long int 32bit enum).
+ (rein at basefarm dot no)
- Fixed bug #52681 (mb_send_mail() appends an extra MIME-Version header).
(Adam)
- Fixed bug #52674 (FPM Status page returns inconsistent Content-Type headers).
static PHP_METHOD(PDOStatement, bindValue)
{
struct pdo_bound_param_data param = {0};
+ long param_type = PDO_PARAM_STR;
PHP_STMT_GET_OBJ;
param.paramno = -1;
- param.param_type = PDO_PARAM_STR;
if (FAILURE == zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC,
- "lz/|l", ¶m.paramno, ¶m.parameter, ¶m.param_type)) {
+ "lz/|l", ¶m.paramno, ¶m.parameter, ¶m_type)) {
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz/|l", ¶m.name,
- ¶m.namelen, ¶m.parameter, ¶m.param_type)) {
+ ¶m.namelen, ¶m.parameter, ¶m_type)) {
RETURN_FALSE;
}
}
+
+ param.param_type = (int) param_type;
if (param.paramno > 0) {
--param.paramno; /* make it zero-based internally */