ID: 13089
Updated by: rasmus
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Reproducible crash
Operating System: Suse Linux 7.1
PHP Version: 4.0.4pl1
New Comment:

Unable to reproduce this.  Could you check to see if this is still a problem in recent 
versions?

Previous Comments:
------------------------------------------------------------------------

[2001-09-01 09:50:53] [EMAIL PROTECTED]

Hey there i just managed something that i never accomplished beforei
kill a httpd process from PHP,
i run the following code

<?
  $slen=strlen($enc);
  for ($i=0;$i<$slen;$i=$i+2) {
   $swap=$enc[$i];
   $enc[$i]=$enc[$i+1];
   $enc[$i+1]=$swap;
  }
?>

$enc is a string and has an even length

This silly lines of code make the apache child process crash, if i
change it to

<?
  $slen=strlen($enc);
  for ($i=0;$i<$slen;$i=$i+2) {
   $swap=$enc[$i];
   $swap2=$enc[$i+1];
   $enc[$i]=$swap2;
   $enc[$i+1]=$swap;
  }
?>

it works well.
what the hell is happening here?

i run php 4.04pl1 as apache module under linux.


------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=13089&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to