diff options
author | Andrey Hristov <andrey@php.net> | 2013-03-13 13:37:51 +0100 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2013-03-13 13:37:51 +0100 |
commit | f1e2edff8befb7863723adbe5680ce3d9714d9ed (patch) | |
tree | 7acf48de9e21afd2655105f155a591a1b7dfbf99 /ext | |
parent | bdaafe3c7b7f388e34078a0a9d7215c8d58acadb (diff) | |
download | php-git-f1e2edff8befb7863723adbe5680ce3d9714d9ed.tar.gz |
fix for bug #63530 mysqlnd_stmt::bind_one_parameter uses wrong alloc for stmt->param_bind
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mysqlnd/mysqlnd_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_ps.c b/ext/mysqlnd/mysqlnd_ps.c index c553aa55a7..00205907a9 100644 --- a/ext/mysqlnd/mysqlnd_ps.c +++ b/ext/mysqlnd/mysqlnd_ps.c @@ -1485,7 +1485,7 @@ MYSQLND_METHOD(mysqlnd_stmt, bind_one_parameter)(MYSQLND_STMT * const s, unsigne if (stmt->param_count) { if (!stmt->param_bind) { - stmt->param_bind = mnd_ecalloc(stmt->param_count, sizeof(MYSQLND_PARAM_BIND)); + stmt->param_bind = mnd_pecalloc(stmt->param_count, sizeof(MYSQLND_PARAM_BIND), stmt->persistent); if (!stmt->param_bind) { DBG_RETURN(FAIL); } |