|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-08-28 12:01 UTC] sysman dot pda at gmail dot com
[2014-05-08 14:39 UTC] uw@php.net
-Status: Open
+Status: Feedback
[2014-05-08 14:39 UTC] uw@php.net
[2014-12-30 10:41 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 17:00:01 2025 UTC |
Description: ------------ I'm using the php5-fpm and related packages from dotdeb.org and the 1.4.2 version of mysqlnd_ms extension. If I try to use some connection state dependent calls before any connection has been established (lazy_connections = 1), it results in a SIGSEGV. I've seen this behavior both with mysqli_character_set_name() and with mysqli_ping() calls. Whenever I do a SQL query before any of those calls, everything's fine. Test script: --------------- $link = mysqli_connect("app", $user, $pass); echo mysqli_character_set_name($link); mysqli_ping($link); Expected result: ---------------- I expect an output or a warning/error reported to the log, but not a SIGSEGV.