https://issues.apache.org/bugzilla/show_bug.cgi?id=49204

           Summary: mysql_close crashes worker
           Product: Apache httpd-2
           Version: 2.2.11
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Core
        AssignedTo: [email protected]
        ReportedBy: [email protected]


It appears that any use of mysql_close() will result in the 

"Parent: child process exited with status 3221225477 -- Restarting." 

error. 

The following test file demonstrates. 
<?php 
$svr="localhost";
$db="coachmaster";
$usr="CoachRunner";
$pass="deya25as";
$link=mysql_pconnect($svr,$usr,$pass) 
     or die("Failed to connect with database.");
mysql_select_db($db,$link) 
     or die("Fail to select database.");
mysql_close();
echo "test ends\n";
?>
If I comment out the mysql_close all works properly. Passwords and usernames
etc are correct. 

I'm using the latest WAMP installer - Apache 2.2.11, php5.3.0 and MySQL 5.1.36. 
Basically a stardard install, with Mod_rewrite, error reporting on high.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to