|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-09-09 12:11 UTC] uw@php.net
[2011-09-09 12:12 UTC] uw@php.net
[2011-09-10 03:51 UTC] laruence@php.net
[2011-09-10 03:52 UTC] laruence@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: laruence
[2011-09-10 03:52 UTC] laruence@php.net
[2011-09-10 04:44 UTC] laruence@php.net
[2012-04-18 09:49 UTC] laruence@php.net
[2012-07-24 23:40 UTC] rasmus@php.net
[2013-11-17 09:36 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
Description: ------------ This will crash, if using mysqli with libmysql. sapi/cli/php -r '$link = new mysqli("192.168.2.27", "root", "", "test"); $stmt = $link->stmt_init(); $in = "a"; $stmt->prepare("SELECT ?"); $stmt->bind_param("s", $in); $stmt->execute(); $stmt->bind_result($in); $stmt->fetch(); var_dump($in);' /home/nixnutz/php-src/branches/PHP_5_4/ext/mysqli/mysqli_api.c(890) : Block 0x071e5870 status: Invalid pointer: ((size=0x005976c6) != (next.prev=0x00000000)) ==12847== Conditional jump or move depends on uninitialised value(s) ==12847== at 0x81C242: zend_mm_check_ptr (zend_alloc.c:1388) ==12847== by 0x81C230: zend_mm_check_ptr (zend_alloc.c:1385) ==12847== by 0x81DDA6: _zend_mm_free_int (zend_alloc.c:2064) ==12847== by 0x81F350: _efree (zend_alloc.c:2436) ==12847== by 0x5F412E: mysqli_stmt_fetch_libmysql (mysqli_api.c:890) Box 1: mysqli MysqlI Support => enabled Client API library version => 5.6.2-m5 Active Persistent Links => 0 Inactive Persistent Links => 0 Active Links => 0 Client API header version => 5.6.2-m5 MYSQLI_SOCKET => /tmp/mysql.sock Box 2: mysqli MysqlI Support => enabled Client API library version => 5.1.45 Active Persistent Links => 0 Inactive Persistent Links => 0 Active Links => 0 Client API header version => 5.1.45 MYSQLI_SOCKET => /tmp/mysql.sock Test script: --------------- sapi/cli/php -r '$link = new mysqli("192.168.2.27", "root", "", "test"); $stmt = $link->stmt_init(); $in = "a"; $stmt->prepare("SELECT ?"); $stmt->bind_param("s", $in); $stmt->execute(); $stmt->bind_result($in); $stmt->fetch(); var_dump($in);'